游客 Signup | Login
中文 | En

2113 - 偷懒的FZQ

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 128 MB

出上一个题花了fuzhongqing一个小时-_-! 所以这道题打算偷懒一下~~~~简单排序!

Input

第一行一个整数T 表示有T行测试数据

接下来有T行 每行有一组数字 第一个数表示数组数的个数  请对每一组进行排序。

Output

排序好的数组 每组占一行

Examples

Input Format

2
5 5 4 3 2 1
9 9999 0 -9 55 88 2 1 1 -32

Output Format

1 2 3 4 5
-32 -9 0 1 1 2 55 88 9999