质数
三数排序
描述
请你输出三个数字按照有小到大的顺序输出
输入
三个整数a,b,c
输出
三个整数,两两之间由一个空格隔开,并且有由小到大输出
输入样例 1
2 4 3
输出样例 1
2 3 4
a, b, c = map(int, input().split()) print(" ".join(str(x) for x in sorted([a, b, c])))
标签:输出,样例,整数,三个,排序,输入 From: https://www.cnblogs.com/flyingsir/p/17777236.html