public class BUBTest1 {
	public static void main(String[] args) {
		BUBTest1 obj = new BUBTest1();
		obj.boxIt( new Integer(42) ); //nothing new
		obj.boxIt( 42 ); //dynamic boxing

		obj.unBoxIt( 42 ); //nothing new
		obj.unBoxIt( new Integer(42) ); //dynamic unboxing
	} //main()
	public void boxIt(Integer i) {
		System.out.println("value="+i);
	} //boxIt
	public void unBoxIt(int i) {
		System.out.println("value="+i);
	} //unBoxIt
} //class BUBTest1