Posts

Showing posts with the label Greatest among two numbers in python

Greatest among two numbers in python

  Greatest among two numbers in python      a=int(input())      b=int(input())      if(a>b):          print(a)      else:          print(b)