Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130343 叶航帅 08三个数排序 Python3 Wrong Answer 51 MS 3756 KB 154 2025-09-11 21:33:38

Tests(0/10):


Code:

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


Run Info:

------Input------
4 43 85
------Answer-----
85 43 4
------Your output-----
85