Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
72089 赵天瑜 比较三个数大小II Python3 Accepted 33 MS 3756 KB 113 2024-04-30 20:37:17

Tests(1/1):


Code:

a,b,c=map(int,input().split()) list=[a,b,c] list.sort() for i in range(len(list)): print(list[i],end=' ')