1829: 计数排序~小数序列排序(3)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:28 Solved:16

Description

【问题描述】

使用计数排序完成。输入n个小数(小数精度为1位小数,数字的绝对值不超过100),将n个数按从小到大的顺序输出(n<=10000)



Input

输入多个数字,空格分隔。

Output

输出排序后的序列,保留一位小数。

Sample Input Copy

49 -38.1 65.5 97.3 -76 13.8 -27 49

Sample Output Copy

-76.0 -38.1 -27.0 13.8 49.0 49.0 65.5 97.3