You are viewing a single comment's thread. Return to all comments →
a = int(input()) b = int(input()) div_mod = divmod(a,b) print(div_mod[0]) print(div_mod[1]) print(div_mod)
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Mod Divmod
You are viewing a single comment's thread. Return to all comments →