public interface Point {
    int xCoordinate();
    int yCoordinate();
}
