(int a, int b)
| 22 | private static long add = 8728348608L; |
| 23 | |
| 24 | public static long power(int a, int b) { |
| 25 | long power = 1; |
| 26 | for (int c = 0; c < b; c++) { |
| 27 | power *= a; |
| 28 | } |
| 29 | |
| 30 | return power; |
| 31 | } |
| 32 | |
| 33 | public static String bv2av(String s) { |
| 34 | long r = 0; |