Following is a program to implement the relational operations <,>,==
a = int(input("Enter 1st number\n"))
b = int(input("Enter 2nd number\n"))
if (a>b):
print(f"{a} is greater than {b}")
elif (a==b):
print(f"{a} is equal to {b}")
else:
print(f"{b} is greater than {a}")== Equal to
< less than
> greater than

