We called a triangle is good if and only If the triangle contains the origin.
You need to find n points on the plane, satisfying:
Output the maximum number and a set of the coordinates of those n points for which the maximum is reached.
The first line of input contains a single integer T(1≤T≤10), indicating the number of test cases.
Each of the next T lines contains a single integer n(1≤n≤2×105), describing the number of points you have to find for that test case.
It is guaranteed that the sum of n over all test cases does not exceed 10^6.
1
3
1
0 1
-1 -1
1 -1