You are viewing a single comment's thread. Return to all comments →
if __name__ == "__main__": a, b = [int(input()) for _ in range(2)] div, mod = a//b, a%b print(div) print(mod) print((div, mod))
Seems like cookies are disabled on this browser, please enable them to open this website
Mod Divmod
You are viewing a single comment's thread. Return to all comments →