1711: 降序排列

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:57 Solved:43

Description

一个数组存储了多个数字,现在要将它们降序排序。



Input

先输入数字个数n,n不超过100;后续n个数字,空格分隔;



Output

输出排序后的数字。



Sample Input Copy

8 89 98 32 28 79 99 85 64

Sample Output Copy

99 98 89 85 79 64 32 28