I'm trying to code a program that will print the total price after a discount. If the price paid is over 100, it will knock off 20%. At the end of the program, I receive this error:
if paid>=100:
TypeError: unorderable types: str() >= int()
Here is my Code:
paid=input('How much did you pay? ')
if paid>=100:
actualPay=100*1.25 #20% off total, 100/0.80 = 1.25
print(actualPay)