1 2 3 4 5 6 7 8 9 10
type = input() a = input() b = input() if type == 'int': a = int(a) b = int(b) if a > b: print(a) else: print(b)