static bool even(int i) { ret (i & 1) == 0; } static bool even(long i) { ret (i & 1) == 0; } static bool even(BigInt n) { ret even(n.intValue()); }