// example on using packages
// Adam Beguelin September 17, 1996
// adamb@cs.cmu.edu

import p1.*;
public class pack {

	public static void main(String args[]) {
		Protection p1 = new Protection();
		derived d1;
		samepackage s1;

		System.out.println( "Done.");
	}

}
