Run ID:113937

提交时间:2025-03-17 20:09:10

a,b,c=int(input()) if a>b: if a>c: print("max=",a) else: print("max=",c) else: if b>c: print("max=",b) else: print("max=",c)