import java.util.*;
import java.util.function.*;

public class PrintCollection {
	public static void main(String [] args) {
		ArrayList<Integer> a = new ArrayList<Integer>(Arrays.asList(new Integer [] {1, 2, 3, 4, 5, 6}));
		a.forEach(e -> System.out.println(e));
	}
}
