class Point { private int x, y; private final int secret; public Point(int x_, int y_) { x = x_; y = y_; secret = 5; } public String toString() { return String.format("(%d, %d)", x, y); } }