In this challenge you will be given a relation between two numbers, written as a string. Write a function that determines if the relation is True or False.
is_it_true("2=2") ➞ True
is_it_true("8<7") ➞ False
is_it_true("5=13") ➞ False
is_it_true("15>4") ➞ True
=, >, and <eval() function is particularly useful!