Mod Divmod

  • + 0 comments

    n1=int(input()) n2=int(input()) print(n1//n2) print(n1%n2) print(f"{(n1//n2, n1%n2)}")