Run ID:113950
提交时间:2025-03-17 20:54:05
a,b,c=map(int,input().split()) if a>b: if a>c: print("max=",a) else: print("max=",c) else: if b>c: print("max=",b) else: print("max=",c)