11381138
First line will be a positive integer T (T<=15), which is the number of test cases.
In each test case, the first line will be two integer n and m, which are the lengths of the two arrays. The second line will be the terms of the first array. The third line will be the terms of the second array.
(1 <= n, m <= 100000, the combat values will in the range of [0, 109])
For each test case, print the combined array.
2
4 5
1 2 3 4
1 2 3 4 5
1 3
2
1 3 4
1 1 2 2 3 3 4 4 5
1 2 3 4