There are multiple cases. The first line of the input contains a single integer, indicating the number of cases.
For each case, the first line of the input contains a single even integer, the number of points. The following $N$ lines each contains two integers
, denoting the x-coordinate and the y-coordinate of the
-th point.
It is guaranteed that the sum ofover all cases does not exceed
.
For each case, print four integersin a line, representing a line passing through
and
. Obviously the output must satisfy
.
The absolute value of each coordinate must not exceed. It is guaranteed that at least one solution exists. If there are multiple solutions, print any of them.