//  Data Structures with Java by John R. Hubbard
//  Copyright McGraw-Hill, 2001
//  Problem 1.14 on page 22


public class Pr0114
{ public static void main(String[] args)
  { Point p = Point.ORIGIN;
    System.out.println("p = " + p);
  }
}
