package coord_count; import java.util.Scanner; class Point { private int x; private int y; public Point(int x, int y) { this.x = x; this.y = y; } public int getX() { return this.x; } public int getY() { return this.y; } } public class CoordCount { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); Point[] points = new Point[N]; for(int i = 0; i