Problem R: 绝对值排序

Problem R: 绝对值排序

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 525  Solved: 285
[Submit] [Status] [Web Board] [Creator:]

Description

输入n(n<=100)个整数,按照绝对值从大到小排序后输出。

Input

输入数据有多组,每组的第一个数字为n,接着是n个整数,n=0表示输入数据的结束,所有的数的绝对值都不相等。

Output

输出每组测试数据排序后的结果

Sample Input Copy

3 3 -4 2
4 0 1 2 -3
0

Sample Output Copy

-4 3 2
-3 2 1 0