There are n distinct points in the plane, any three of which are not colinear.
You are asked to use ⌈2n⌉ distinct lines passing through no given points to cut the plane into pieces such that no two points lie in the same piece.
There are multiple test cases. The first line of the input contains an integer T, indicating the number of test cases. For each test case:
The first line contains an integer n (1≤n≤100) -- the number of points.
Each of the following n lines contains two integers x and y (−1000≤x,y≤1000) describing a point in the plane.
It is guaranteed that there always exists a solution for each test case and the sum of n in all test cases does not exceed 105.
For each test case, output ⌈2n⌉ lines describing a solution.
Each line of them contains four integers x_1, y_1, x_2 and y_2 indicating a line through (x_1,y_1) and (x_2,y_2), where (x_1,y_1)=(x_2,y_2) and the absolute value of the coordinates should not exceed 109.