Listing C
public class Employee {
       private static final Integer CHILD = new Integer(0);
 
 
       public static void main(String args[]) {
         //code for adding n to an Integer
 
 
         int n=10;
         Integer age= new Integer(30);
         Integer ageAfterTenYear= new Integer(age.intValue +10);
 
 
       }
}