PROGRAMMING:Sorting
Input 5 integers, output them from small to large.
### Input format:
Input 5 integers seperated by space.
### Output format:
Output 5 integers seperated by coma.
### Input:
```
4 5 6 7 2
```
### output:
```
2,4,5,6,7,
```
answer:If there is no answer, please comment
### Input format:
Input 5 integers seperated by space.
### Output format:
Output 5 integers seperated by coma.
### Input:
```
4 5 6 7 2
```
### output:
```
2,4,5,6,7,
```
answer:If there is no answer, please comment