void main() { Point p = new Point(); p.x = 1; p.y = 2; System.out.printf("(%d, %d)", p.x, p.y); }