Find it is True or False



Problem to check the given statement is true or false.



Example-1:


Input    : n = "5<7"
Output   : True  


Example-2:


Input    : n = "7==5"
Output   : False 







Solution




n = "5<7"

print(eval(n))



Output



True