So this is the problem section in a simple "Is your amount greater than or less than 50?" program. This section is entirely independent, but it doesn't work. If my input is 50 or anything less, it says "Sorry, not enough money." But strangely, from 100 and on, it also registers those amounts as "Sorry, that is not enough money." I've tried a bunch of things with it and I can't get it to work! What am I missing? Thank you!
money_amount = input("Type your amount with no quotations.")
if money_amount <= "50":
print ("Sorry, that is not enough money.")
quit()
else:
print ("Yay!")