/* 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 Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		int[] intArray = new int[]{2,3,4,5,6,7,8};
		ArrayList arrayList1 = new ArrayList(Arrays.asList(intArray));
		System.out.println("arrayList1.size() = " + arrayList1.size());
		//ArrayList<Integer> arrayList2 = new ArrayList<Integer>(Arrays.asList(intArray));

		Integer[] integerArray = new Integer[]{2,3,4,5,6,7,8};
		ArrayList<Integer> arrayList3 = new ArrayList<Integer>(Arrays.asList(integerArray));
		System.out.println("arrayList3.size() = " + arrayList3.size());
	}
}