Mod Divmod

  • + 1 comment

    a=int(input()) b=int(input())

    print(f"{a//b}\n{a%b}\n{divmod(177,10)}")