public class Point {
  private double x, y;
    
  public Point( double initx, double inity ) {
    x = initx;  
    y = inity;
  }
    
  public String toString( ) {
    return "( " + x + ", " + y + " )";
  }
}

