class Point {
    /** Set the point position to the specified coordinates */
    public void setPosition(int sx, int sy) {
        x = sx;
        y = sy;
    }
}
class Point {
    /** Set the point position to the specified coordinates */
    public void setPosition(int x, int y) {
        this.x = x;
        this.y = y;
    }
}