1169: 【入门】编程输入10个正整数,然后自动按从大到小的顺序输出

Memory Limit:16 MB Time Limit:1.000 S
Creator:
Submit:5 Solved:5

Description

编程输入10个正整数,然后自动按从大到小的顺序输出。

Input

输入只有一行,包括10整数.

Output

输出只有一行,包括10个整数。

Sample Input

1 2 3 4 5 7 6 8 9 10

Sample Output

10 9 8 7 6 5 4 3 2 1