Problem1129--3个整数排序

1129: 3个整数排序

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

输入T,表示有T组数据。

每组数据有3个数a,b,c。

对于每组数据,从大到小输出a,b,c。

Input

见Sample

Output

见Sample

Sample Input Copy

2
20 7 33
1 2 3

Sample Output Copy

33 20 7
3 2 1

Source/Category