import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.math.BigInteger; import java.util.Arrays; import java.util.Iterator; public class Main_yukicoder251 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int MOD = 129402307; // BigInteger TWO = new BigInteger("2"); String n = sc.next(); String m = sc.next(); BigInteger nn = new BigInteger(n); nn = nn.mod(new BigInteger("129402307")); BigInteger loop = new BigInteger(m); long x = nn.longValue(); long ret = 1; /* while (loop.compareTo(BigInteger.ZERO) > 0) { if (loop.mod(TWO).compareTo(BigInteger.ONE) == 0) { ret = ret * x % MOD; } x = x * x % MOD; loop = loop.divide(TWO); } */ int mm = loop.bitLength(); for (int i = 0; i < mm; i++) { if (loop.testBit(i)) { ret = ret * x % MOD; } x = x * x % MOD; } System.out.println(ret); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } }