// #pragma GCC target("avx") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include using namespace std; #define rep(i,n) for(int i = 0; i < (int)n; i++) #define FOR(n) for(int i = 0; i < (int)n; i++) #define repi(i,a,b) for(int i = (int)a; i < (int)b; i++) #define all(x) x.begin(),x.end() //#define mp make_pair #define vi vector #define vvi vector #define vvvi vector #define vvvvi vector #define pii pair #define vpii vector> template void chmax(T &a, const T &b) {a = (a > b? a : b);} template void chmin(T &a, const T &b) {a = (a < b? a : b);} using ll = long long; using ld = long double; using ull = unsigned long long; const ll INF = numeric_limits::max() / 2; const ld pi = 3.1415926535897932384626433832795028; const ll mod = 998244353; int dx[] = {1, 0, -1, 0, -1, -1, 1, 1}; int dy[] = {0, 1, 0, -1, -1, 1, -1, 1}; #define int long long struct fast_prime_factorizer { fast_prime_factorizer() = default; // Miller-Rabin 素数判定法 template T pow_mod(T A, T N, T M) { T res = 1 % M; A %= M; while (N) { if (N & 1) res = (res * A) % M; A = (A * A) % M; N >>= 1; } return res; } // Pollard のロー法 long long gcd(long long A, long long B) { A = abs(A), B = abs(B); if (B == 0) return A; else return gcd(B, A % B); } long long pollard(long long N) { if (N % 2 == 0) return 2; if (is_prime(N)) return N; auto f = [&](long long x) -> long long { return (__int128_t(x) * x + 1) % N; }; long long step = 0; while (true) { ++step; long long x = step, y = f(x); while (true) { long long p = gcd(y - x + N, N); if (p == 0 || p == N) break; if (p != 1) return p; x = f(x); y = f(f(y)); } } } bool is_prime(long long N) { if (N <= 1) return false; if (N == 2 || N == 3) return true; if (N % 2 == 0) return false; vector A = {2, 325, 9375, 28178, 450775, 9780504, 1795265022}; long long s = 0, d = N - 1; while (d % 2 == 0) { ++s; d >>= 1; } for (auto a : A) { if (a % N == 0) return true; long long t, x = pow_mod<__int128_t>(a, d, N); if (x != 1) { for (t = 0; t < s; ++t) { if (x == N - 1) break; x = __int128_t(x) * x % N; } if (t == s) return false; } } return true; } vector factorize(long long N) { if (N == 1) return {}; long long p = pollard(N); if (p == N) return {p}; vector left = factorize(p); vector right = factorize(N / p); left.insert(left.end(), right.begin(), right.end()); sort(left.begin(), left.end()); return left; } }(factorizer); template vector> run_length_encoding(vector s) { T need = s[0]; int cnt = 0; vector> ret; for(T c : s) { if(c == need) { cnt++; }else { ret.emplace_back(need, cnt); need = c; cnt = 1; } } if(cnt != 0) ret.emplace_back(need, cnt); return ret; } template struct Modular_Int { int x; Modular_Int() = default; Modular_Int(int x_) : x(x_ >= 0? x_%MOD : (MOD-(-x_)%MOD)%MOD) {} int val() const { return (x%MOD+MOD)%MOD; } int get_mod() const { return MOD; } Modular_Int& operator^=(int d) { Modular_Int ret(1); int nx = x; while(d) { if(d&1) ret *= nx; (nx *= nx) %= MOD; d >>= 1; } *this = ret; return *this; } Modular_Int operator^(int d) const {return Modular_Int(*this) ^= d;} Modular_Int pow(int d) const {return Modular_Int(*this) ^= d;} //use this basically Modular_Int inv() const { return Modular_Int(*this) ^ (MOD-2); } //only if the module number is not prime //Don't use. This is broken. // Modular_Int inv() const { // int a = (x%MOD+MOD)%MOD, b = MOD, u = 1, v = 0; // while(b) { // int t = a/b; // a -= t*b, swap(a, b); // u -= t*v, swap(u, v); // } // return Modular_Int(u); // } Modular_Int& operator+=(const Modular_Int other) { if((x += other.x) >= MOD) x -= MOD; return *this; } Modular_Int& operator-=(const Modular_Int other) { if((x -= other.x) < 0) x += MOD; return *this; } Modular_Int& operator*=(const Modular_Int other) { int z = x; z *= other.x; z %= MOD; x = z; if(x < 0) x += MOD; return *this; } Modular_Int& operator/=(const Modular_Int other) { return *this = *this * other.inv(); } Modular_Int& operator++() { x++; if (x == MOD) x = 0; return *this; } Modular_Int& operator--() { if (x == 0) x = MOD; x--; return *this; } Modular_Int operator+(const Modular_Int other) const {return Modular_Int(*this) += other;} Modular_Int operator-(const Modular_Int other) const {return Modular_Int(*this) -= other;} Modular_Int operator*(const Modular_Int other) const {return Modular_Int(*this) *= other;} Modular_Int operator/(const Modular_Int other) const {return Modular_Int(*this) /= other;} Modular_Int& operator+=(const int other) {Modular_Int other_(other); *this += other_; return *this;} Modular_Int& operator-=(const int other) {Modular_Int other_(other); *this -= other_; return *this;} Modular_Int& operator*=(const int other) {Modular_Int other_(other); *this *= other_; return *this;} Modular_Int& operator/=(const int other) {Modular_Int other_(other); *this /= other_; return *this;} Modular_Int operator+(const int other) const {return Modular_Int(*this) += other;} Modular_Int operator-(const int other) const {return Modular_Int(*this) -= other;} Modular_Int operator*(const int other) const {return Modular_Int(*this) *= other;} Modular_Int operator/(const int other) const {return Modular_Int(*this) /= other;} bool operator==(const Modular_Int other) const {return (*this).val() == other.val();} bool operator!=(const Modular_Int other) const {return (*this).val() != other.val();} bool operator==(const int other) const {return (*this).val() == other;} bool operator!=(const int other) const {return (*this).val() != other;} Modular_Int operator-() const {return Modular_Int(0LL)-Modular_Int(*this);} //入れ子にしたい // friend constexpr istream& operator>>(istream& is, mint& x) noexcept { // int X; // is >> X; // x = X; // return is; // } // friend constexpr ostream& operator<<(ostream& os, mint& x) { // os << x.val(); // return os; // } }; const int MOD_VAL = 1e9+7; // const int MOD_VAL = 998244353; using mint = Modular_Int; istream& operator>>(istream& is, mint& x) { int X; is >> X; x = X; return is; } ostream& operator<<(ostream& os, mint& x) { os << x.val(); return os; } // istream& operator<<(istream& is, mint &a) { // int x; // is >> x; // a = mint(x); // return is; // } // ostream& operator<<(ostream& os, mint a) { // os << a.val(); // return os; // } // vector f = {1}, rf = {1}; // void factor_init(int n) { // ++n; // f.resize(n, 0); // rf.resize(n, 0); // f[0] = 1; // repi(i, 1, n) f[i] = (f[i - 1] * i); //// repi(i, 0, n) rf[n-1] *= i; //// for(int i = n-1; i > 0; --i) rf[i-1] = rf[i] * i; // repi(i, 0, n) rf[i] = f[i].inv(); // } // mint P(int n, int k) { // assert(n>=k); // while(n > f.size()-1) { // f.push_back(f.back() * f.size()); // rf.push_back(f.back().inv()); // } // return f[n] * f[n-k]; // } // mint C(int n, int k) { // assert(n>=k); // while(n > f.size()-1) { // f.push_back(f.back() * f.size()); // rf.push_back(f.back().inv()); // } // return f[n]*rf[n-k]*rf[k]; // } // mint H(int n, int k) { // assert(n>=1); // return C(n+k-1, k); // } // mint Cat(int n) { // return C(2*n, n)-C(2*n, n-1); // } void solve() { const int TMP_MOD = 1e9+6; int n, k; cin >> n >> k; vi factor = factorizer.factorize(n); unordered_map now; for(auto e : factor) ++now[e]; while(now.size() > 1) { unordered_map nxt; for(auto e : now) { for(auto f : factorizer.factorize(e.first+1)) { (nxt[f] += e.second) %= TMP_MOD; } } now.swap(nxt); --k; if(k == 0) { mint ans = 1; for(auto e : now) { ans *= mint(e.first).pow(e.second); } cout << ans.val() << endl; return; } } if(now.begin()->first == 3) { unordered_map nxt; for(auto e : now) { for(auto f : factorizer.factorize(e.first+1)) { (nxt[f] += e.second) %= TMP_MOD; } } now.swap(nxt); --k; if(k == 0) { mint ans = 1; for(auto e : now) { ans *= mint(e.first).pow(e.second); } cout << ans.val() << endl; return; } } int power = k/2; k %= 2; int mul = 2; while(power > 0) { if(power&1) (now.begin()->second *= mul) %= TMP_MOD; mul = (mul * mul) % TMP_MOD; power >>= 1; } if(k == 1) { unordered_map nxt; for(auto e : now) { for(auto f : factorizer.factorize(e.first+1)) { (nxt[f] += e.second) %= TMP_MOD; } } now.swap(nxt); --k; } if(k == 0) { mint ans = 1; for(auto e : now) { ans *= mint(e.first).pow(e.second); } cout << ans.val() << endl; return; } } signed main() { cin.tie(nullptr); ios::sync_with_stdio(false); solve(); return 0; }