Run ID:113959

提交时间:2025-03-17 21:31:26

a,b,c=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)