When I attempt to use an if statement to check if one variable is larger than another variable the if statement only checks the first digit. For example 3>10 but 30>1. How do I fix this so that the entire variable is checked?
I have tried manually setting variables and restarting my Pycharm
Alpha = input("Input first Value:")
Bravo = input("Input second Value:")
Echo = 0
if Alpha >= Bravo:
Echo += 1
print(Echo)
When Alpha is 10 and Bravo is 3 Echo should equal 1 but instead it equals 0