1709: 学号排序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:78 Solved:45

Description

一个数组存储了学生的学号,现在要将他们从小到大进行排序。



Input

先输入人数n,人数不超过100

后续n个数字,表示学号,空格分隔;



Output

输出排序后的学号。



Sample Input Copy

8  89  98  32  28  79  99  85  64

Sample Output Copy

28 32 64 79 85 89 98 99

Source/Category