a,b = input().split() a,b = int(a),int(b) if a>b: print(a) else: print(b)
------Input------ 70 480 94 ------Answer----- Yes ------Your output-----