PROGRAMMING:Programming question 1
Please write a program to sort a group of shaping data.
###Input format:
In the first line, enter an integer n (n < = 100), and in the second line, enter n consecutive integers.
###Output format:
From small to large order of N numbers.
###Input example:
```in
seven
25 24 12 76 101 96 28
```
###Output example:
```out
12 24 25 28 76 96 101
```
answer:If there is no answer, please comment
###Input format:
In the first line, enter an integer n (n < = 100), and in the second line, enter n consecutive integers.
###Output format:
From small to large order of N numbers.
###Input example:
```in
seven
25 24 12 76 101 96 28
```
###Output example:
```out
12 24 25 28 76 96 101
```
answer:If there is no answer, please comment