Mod Divmod

  • + 0 comments
    a,b = int(input()),int(input())
    print (a//b,a%b,divmod(a,b),sep="\n")