Run ID:92760
提交时间:2024-10-06 13:50:12
s=input().split(',') a=s[0] b=s[1] c=s[2] a=int(a) b=int(b) c=int(c) if a>b and a>c: print('max=',a , sep="") elif c>a and c>b: print('max=',c, sep='') else: print('max=',b, sep='')