Problem2000--简单排序(0.1)

2000: 简单排序(0.1)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

给你n个数,请你把这些数从小到大输出。

Input

第一行,一个整数n,2<=n<=100.
第二行,n个整数x,每个整数0<=x<=1000,其中有的可能相同。

Output

n个整数

Sample Input Copy

4 
4 8 1 2 

Sample Output Copy

1 2 4 8

Source/Category

排序