5623 - 数字升序输出
Time Limit : 1 秒
Memory Limit : 128 MB
现在我们输入5个0-9里面的数字,从小到大排序,这个应该怎么办?比如,我们输出6 2 7 5 5,那么就出输出2 5 5 6 7。
Input
5个0-9里面的数字
Output
按照升序排序后的5个数字
Examples
Input
1 9 7 3 5
Output
1 3 5 7 9
Input
8 4 6 2 0
Output
0 2 4 6 8
Input
3 7 6 1 5
Output
1 3 5 6 7
Source
入门教程