int a[];
a = new int[10];
a[2] = 3;
System.out.Println(a[2]);

