a,b,c=map(int,input().split()) if a>b and a>c: print("max="+str(a)) if b>a and b>c: print("max="+str(b)) if c>a and c>b: print("max="+str(c))