5652: Q64-2 选择排序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:44 Solved:15

Description

输入 5 个数,排序后按由大到小的顺序输出( 选择排序 )。

Input

2 3 1 4 5

Output

5 4 3 2 1

Sample Input Copy

2 3 1 4 5

Sample Output Copy

5 4 3 2 1