Run ID:92759
提交时间:2024-10-06 13:49:00
a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if b > c > d : print("max=",b,sep="") elif d > c > b : print("max=",d,sep="") else: print("max=",c,sep="")