s=input().split(',') a=s[0] b=s[1] a=int(a) b=int(b) if a>b: print('max=',a , sep="") else: print('max=',b, sep='')