Mod Divmod

  • + 0 comments
    import os
    
    a = int(input())
    b = int(input())
    
    print(a//b, a%b, divmod(a,b), sep=os.linesep)