static long maxL(Collection c) { long x = Long.MIN_VALUE; for (long i : c) x = max(x, i); ret x; }