Run ID:113952

提交时间:2025-03-17 21:02:50

a,b,c=map(int,input().split()) if a>b: if a>c: print(f"max={a}") else: print(f"max={c}") else: if b>c: print(f"max={b}") else: print(f"max={c}")