Run ID:113948

提交时间:2025-03-17 20:52:18

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)