PROGRAMMING:sort
####Task description
Input a number of integers, sort from large to small and output.
####Input format:
A number of integers, separated by spaces, with no more than 20 integers.
####Output format:
The input data is sorted from large to small and then output. Every two data are separated by a space.
####Input example:
```in
-5 1 3 4 6
```
####Output example:
```out
6 4 3 1 -5
```
####Input example:
```in
46 50 72 63 90 42 84 49 90 14
```
####Output example:
```out
90 90 84 72 63 50 49 46 42 14
```
answer:If there is no answer, please comment
Input a number of integers, sort from large to small and output.
####Input format:
A number of integers, separated by spaces, with no more than 20 integers.
####Output format:
The input data is sorted from large to small and then output. Every two data are separated by a space.
####Input example:
```in
-5 1 3 4 6
```
####Output example:
```out
6 4 3 1 -5
```
####Input example:
```in
46 50 72 63 90 42 84 49 90 14
```
####Output example:
```out
90 90 84 72 63 50 49 46 42 14
```
answer:If there is no answer, please comment