def max (x, y): if x > y : return x else: return y m, n = input().split() print (max (int(m), int(n)))