PROGRAMMING:Sequencing
The one-dimensional array composed of N integers is sorted from small to large by order method and then output (4 < n < 10), which requires only three rounds of sorting.
###Input format:
The first line gives a positive integer n of no more than 10. The second line gives n integers separated by spaces.
###Output format:
Output n sorted integers in a row. Each number output takes up 5 columns.
###Input example:
```in
five
5 2 3 6 1
```
###Output example:
```out
1 2 3 6 5
```
answer:If there is no answer, please comment
###Input format:
The first line gives a positive integer n of no more than 10. The second line gives n integers separated by spaces.
###Output format:
Output n sorted integers in a row. Each number output takes up 5 columns.
###Input example:
```in
five
5 2 3 6 1
```
###Output example:
```out
1 2 3 6 5
```
answer:If there is no answer, please comment