Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141265 王一诺 求三个数的最大值 Python3 Wrong Answer 30 MS 3768 KB 134 2025-12-21 17:10:48

Tests(0/1):


Code:

a,b,c=input().split() a,b,c=int(a),int(b),int(c) if a>b and a>c: print(a) elif b>a and b>c: print(b) else: print(c)


Run Info:

------Input------
8 5 20
------Answer-----
max=20
------Your output-----
20