Problem A: 【一维数组】排列数据

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:172 Solved:116

Description

给定一组乱序数字,请使用直接选择排序使这些数字从小到大排列

Input

两行
第一行,n
第二行,n个数

Output

一行,排序后的数

Sample Input Copy

5
3 41 22 9 1

Sample Output Copy

1 3 9 22 41