Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136532 6倪葭轩 08比较三个数的大小 Python3 Wrong Answer 44 MS 3740 KB 105 2025-11-15 13:26:54

Tests(1/10):


Code:

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


Run Info:

------Input------
97 95 4
------Answer-----
97
------Your output-----
4