Exp 4
AI-enhanced title
// Default constructor public MyPoint() { this.x = 0; this.y = 0; }
// Overloaded constructor public MyPoint(int x, int y) { this.x = x; this.y = y; }