You are viewing a single comment's thread. Return to all comments →
n1, n2 = int(input()), int(input()) div, mod = divmod(n1, n2) print(f"{div}\n{mod}") print(divmod(n1, n2))
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 →