I would like to know why my if else statement is not with the two inputs I added and I would like to know how to fix it
x = input('Please enter number')
y = input('Please enter another number')
if x + y > 5:
print ('greater than')
elif x + y < 5:
print ('less than')
elif x + y == 5:
print ('equal to')