Run ID:93541

提交时间:2024-10-17 19:57:37

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="")