A subsum of a sequence is a sum of one or more consecutive elements of this sequence.
You are given an integer N. Your task is to make a sequence of positive integers which are not greater than 3⋅(N+6) such that all its N⋅(N+1)/2 subsums are different from each other.
There are several test cases.
The first line of input contains an integer T, the number of test cases (1≤T≤200).
Each of the next T lines contains an integer N, the length of the sequence (1≤N≤2000).
For each test case, print one line with N space-separated positive integers representing your sequence.
If multiple solutions exist, any of them will be accepted.