static double pow(double a, double b) { ret Math.pow(a, b); } static float pow(float a, float b) { ret (float) Math.pow(a, b); } static BigInt pow(BigInt a, int b) { ret a.pow(b); }