Mod Divmod

  • + 0 comments

    Here's my code

    res = divmod(*[int(input()) for _ in range(2)])
    print(*(list(res)+[res]), sep='\n')