Run ID:93540

提交时间:2024-10-17 19:54:23

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