//  Represents a geometric point object

public class GPoint {
	//  (x,y) coordinates of the point
	public double x;
	public double y;
	
    //  Make a point object from its x and y coordinates
    public GPoint(double x, double y) {
        this.x = this.y = Double.MAX_VALUE;  //  Replace with your code
    }
    
    //  Human-readable string representation
    public String toString() {
        return "Point"; //  Replace with your code
    }
}

