| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136425 | 杨炬铃 | 比较三个数大小II | Python3 | Wrong Answer | 49 MS | 3744 KB | 92 | 2025-11-14 08:52:27 |
a=int(input()) b=int(input()) c=int(input()) lis=[a,b,c] lis.sort() print("".join(lis))
------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----