1062: 排序
Memory Limit:128 MB
Time Limit:0.000 S
Judge Style:Text Compare
Creator:
Submit:10
Solved:6
Description
输入n(n< 100)个整数,将它们从小到大输出
Input
第一行,一个整数n,表示有n个整数。
第二行,n个整数。
Output
一行,排序后的n个整数。
Sample Input Copy
5
3 6 2 4 6
Sample Output Copy
2 3 4 6 6