import java.io.*; import java.util.*; class point { int x,y; } public class Solution { public static void main(String[] args) { Scanner s= new Scanner(System.in); int q=s.nextInt(); while(q-->0) { int n=s.nextInt(); point p[] = new point[n]; for(int x=0;x