PROGRAMMING:Data sorting in dynamic memory
Read in integer n, then read in n integers, sort these n integers from small to large and output them( Can't define integer array, using dynamic memory technology)
###Input example:
```in
five
1 5 3 4 2
```
###Output example:
```out
1 2 3 4 5
```
answer:If there is no answer, please comment
###Input example:
```in
five
1 5 3 4 2
```
###Output example:
```out
1 2 3 4 5
```
answer:If there is no answer, please comment