/* 
Save the file in where the folder pic20 locate
to run the program
use java SubClassTest
*/

import pic20.*;

public class SubClassTest {
    public static void main(String[] args) {
        SubClass sub = new SubClass();
	// sub.privateMethod(); // illegal
	// sub.protectedMethod(); // illegal
	sub.publicMethod();
	sub.method();
    }
}
    
