1144: 【入门】编程输入10个正整数,然后自动按从大到小的顺序输出
Memory Limit:16 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3
Solved:3
Description
编程输入10个正整数,然后自动按从大到小的顺序输出。
Input
输入只有一行,包括10整数.
Output
输出只有一行,包括10个整数。
Sample Input Copy
1 2 3 4 5 7 6 8 9 10
Sample Output Copy
10 9 8 7 6 5 4 3 2 1