Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109032 胡海峰老师 比较三个数大小II Python3 Wrong Answer 35 MS 3760 KB 92 2025-01-24 12:11:32

Tests(0/1):


Code:

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


Run Info:

------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----
346 123 423