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