10131013 SUSTech Online Judge
Problem 1013 --Sort

1013: Sort

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 112  Solved: 89
[Submit][Status][Web Board]

Description

Give you n integers. Please sort and print them.

Input

The first line: an integer: n (n <= 100)

The second line: n integers: a1, a2, ... an (ai <= 106, 1 <= i <= n)

Output

n integers with order

Sample Input

3
1 3 2

Sample Output

1 2 3

HINT

Source

[Submit][Status]