Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128187 胡海峰老师 08三个数排序 Python3 Accepted 61 MS 3772 KB 141 2025-08-09 09:31:27

Tests(10/10):


Code:

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