public static <E> void append(ArrayList<E> a, ArrayList<E> b, int count){ for (int i = 0; i < count && i < b.size(); i++) a.add(b.get(i));}