/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Test
{
	public Integer[] number = {42, 42};
	public static void main (String[] args) throws java.lang.Exception
	{
        Test test = new Test();             //you create a new instance
        test.number[0] = new Integer(3);    //change first element to 3
        test.number[1] = new Integer(2);    //change second element to 2
        System.out.println(test.number[0]); //print first element
	}
}