PROGRAMMING:Sorting exercise 1
Enter n data. Sort from small to large and output results.
###Input format:
Each test contains two lines, which are integer n (0 < n < 100) and N original data.
###Output format:
Output sorted results (1 space between data, no extra space at the end).
###Input example:
```in
six
3 15 31 2 8 26
four
9 8 7 6
five
4 3 2 9 7
```
###Output example:
```out
2 3 8 15 26 31
6 7 8 9
2 3 4 7 9
```
answer:If there is no answer, please comment
###Input format:
Each test contains two lines, which are integer n (0 < n < 100) and N original data.
###Output format:
Output sorted results (1 space between data, no extra space at the end).
###Input example:
```in
six
3 15 31 2 8 26
four
9 8 7 6
five
4 3 2 9 7
```
###Output example:
```out
2 3 8 15 26 31
6 7 8 9
2 3 4 7 9
```
answer:If there is no answer, please comment