I'm trying to print the greatest number here.
Python version 3.4.2. Also tried in 3.5.0.
a = input("A...")
b = input("B...")
if a>b:
    print(a)
else:
    print(b)
Results:
A...5 B...435
========= RESTART =========
A...4 B...4444
========= RESTART =========
A...5 B...445
 
    