<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package geometry;

class Point {
    public double x, y;
    public void moveto(double x, double y) {
	this.x = x;
	this.y = y;
    }
    /*
    public String toString() { 
	return "Point("+ x +","+y+")";
    }
    */
}
</pre></body></html>