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