Posts

Showing posts with the label Smallest Reminder

Smallest Reminder

  Smallest Reminder     ->smallest value among a%b or b%a       a=int(input())      b=int(input())      if(a%b<b%a):          print(a%b)      else:          print(b%a)