Posts

Showing posts with the label Relation between two numbers

Relation between two numbers

  Relation between two numbers      a=int(input())      b=int(input())      if(a>b):          print("A > B")      elif(a<b):          print("A < B")      else:          print("A == B")

Relation between two numbers

Relation between two numbers        a = int(input())      b = int(input())      if(a>b):          print("A > B")      elif(a<b):          print("A < B")      else:           print("A == B")