Mod Divmod

  • + 0 comments
    a=int(input())
    b=int(input())
    print(a//b)
    print(a%b)
    print((a//b,a%b))