package escape.validation; class Point { int x; int y; public Point(int x, int y) { this.x = x; this.y = y; } };