Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137028 胡皓宇 比较三个数大小II Python3 Accepted 50 MS 3752 KB 82 2025-11-16 09:03:06

Tests(1/1):


Code:

nums = list(map(int,input().split())) nums.sort() print(nums[0],nums[1],nums[2])