Input the values of a and b as 10 and 20 respectively. Now check if a is greater or b is greater using if condition. Think about all the edge cases, and print the statements accordingly.
>Solution :
def eval(a, b):
a = int(a)
b = int(b)
if a > b:
print(str(a) + " a is greater than b " + str(b))
elif a < b:
print(str(a) + " a is less than b " + str(b))
else:
print(str(a) + " a is equal to b " + str())
eval(10, 20)
maybe this is what you want.
idk