class Point {

  private int x;
  private int y;

  //constructors
  public Point() {
    x = 0;
    y = 0;
  }
  public Point(int inX, int inY) {
    x = inX;
    y = inY;
  }
}
