

public class Demo1
{
    public static void main(String[] args)
    {
        IntegerObj a = new IntegerObj(4);
        
        System.out.println(a.value);
    }
}
