1827: 计数排序~整数序列排序(2)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:38 Solved:27

Description

使用计数排序实现。输入n个整数(数字的绝对值不超过10000),将n个数按从小到大的顺序输出(n<=10000)



Input

第一行输入n
第二行输入n个数。

Output

输出排序后的序列

Sample Input Copy

8
49 -38 65 97 -76 13 -27 49

Sample Output Copy

-76 -38 -27 13 49 49 65 97