public class MyPoint implements Point {
    private int x;
    private int y;

    public MyPoint(int x, int y) {
        this.x = x;
        this.y = y;
    }

    public int xCoordinate() {
        return x;
    }
    public int yCoordinate() {
        return y;
    }
}
