package CHAPTER05.another;

import example.ProtectedExample;

public class DifferentPackage {
	public static void main(String[] args) {
		ProtectedExample obj = new ProtectedExample(); 
		
		System.out.println(obj.value);
		obj.show();
	}
}
