// Zorah Fung, CSE 143 // This class represents a Point on the cartesian plane public class Point { int x; int y; // Returns the String representation of this Point public String toString() { return "(" + x + ", " + y + ")"; } }