
class Point
{
  // Instance variables
  public int x,		// x coordinate
             y;		// y coordinate

  public Point()		// Constructor
  { this(0,0); }		// Calls other constructor.

  public Point( int x, int y )	// Constructor
  { this.x = x; this.y = y; }
}
