a,b,c = input().split() a = int(a) b = int(b) c = int(c) t = 0 if a > b: t = a else: t = b if c > t: t = c print("max={}".format(t))