public class Point {
    int x;
    int y;

    /* constructor
     * special method called when we create
     * a Point object using the new operator */
    public Point(int initialX, int initialY) {
	x = initialX;
	y = initialY;
    }
}
