Challenge - #59 - Mod Divmod

 a = int(input())

b = int(input())

q,r = divmod(a,b)

print(q,r,(q,r),sep='\n')

Comments

Popular posts from this blog

Challenge - #48 - Incorrect Regex

Challenge - #52 - Set .discard(), .remove(), & .pop()