PROGRAMMING:Input three integers and output them in order from large to small.
Input three integers and output them in order from large to small.
###Input format:
Three integers separated by spaces.
###Output format:
Output in descending order, separated by commas.
###Input example:
```in
2 1 3
```
###Output example:
```out
3,2,1
```
answer:If there is no answer, please comment
###Input format:
Three integers separated by spaces.
###Output format:
Output in descending order, separated by commas.
###Input example:
```in
2 1 3
```
###Output example:
```out
3,2,1
```
answer:If there is no answer, please comment