class Point {
  public double x;
  public double y;

  Point(double x, double y) {
    this.x = x;
    this.y = y;
  }

  public String getText() {
    return "(" + x + "," + y + ")";
  }
}

