interface Point {
  int getX();
  int getY();
  int setX(int x);
  int setY(int y);
}
