// Simplest version of a Point class for storing an ordered pair (x, y). // This version has just the fields. public class Point { int x; int y; }