Mod Divmod

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