package p2;
import p1.Protection;
import p1.Derived;
import p1.SamePackage;

public class OtherPackage {

	public static void main(String args[]) {
	
	Derived d = new Derived();
	SamePackage s =new SamePackage();

	}
}
