Run ID:129047

提交时间:2025-08-21 16:23:46

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