Run ID:121006
提交时间:2025-06-03 20:57:19
a,b,c=map(int,input().split()) if a>b and a>c: print("max="+str(a)) if b>a and b>c: print("max="+str(b)) if c>a and c>b: print("max="+str(c))