Posts

Showing posts with the label mod divmod hackerrank python solution

Challenge - #59 - Mod Divmod

  a =  int ( input ()) b =  int ( input ()) q,r =  divmod (a,b) print (q,r,(q,r),sep= '\n' )