if x < 10: print "x is smaller than 10" else: print "x is larger than 10 or equals 10"
if a >= b: max = a else: max = b