#include using namespace std; using ll = long long; #ifdef MY_DEBUG #define dbg(...) debug_out(__VA_ARGS__) #define dbgn(var) debug_out(#var, "=", var) #else #define dbg(...) #define dbgn(...) #endif void debug_out(); template void debug_out(Head, Tail...); template bool chmax(T&, const T&); template bool chmin(T&, const T&); template T pwr(T, ll); template T squ(T x) { return x * x; } ll fact(ll); ll comb(ll, ll); ll ctoll(char); char lltoc(ll); bool flg(ll b, ll i) { return ((b) >> (i)) & 1LL; } // flg(0b010, 1LL) -> true const ll LINF = (ll)1e18 + 7; const double EPS = 1e-9; const int MAX_DUBUG_SIZE = 10; constexpr uint32_t totient(uint32_t x) { uint32_t ans = x; for (uint32_t i = 2; i * i <= x; i++) if (x % i == 0) { ans /= i; ans *= i - 1; do x /= i; while (x % i == 0); } if (x != 1) { ans /= x; ans *= x - 1; } return ans; } template struct Modint { static_assert(P < 0x80000000, "P must be smaller than 2^31"); uint32_t a; Modint b; private: static uint32_t mod(uint64_t x) { if (x < P * 2) return uint32_t(x); return uint32_t(x % P) + P; } static uint32_t mul(uint32_t a, uint32_t b) { return mod(uint64_t(a) * b); } static uint32_t pow(uint32_t a, uint32_t b) { uint32_t ans = 1; while (b) { if (b & 1) ans = mul(ans, a); a = mul(a, a); b >>= 1; } return ans; } public: Modint(uint64_t x) : a(mod(x)), b(x) {} Modint(uint32_t a, Modint b) : a(a), b(b) {} uint32_t val() const { if (a < P) return a; return a - P; } Modint& operator*=(const Modint& other) { a = mul(a, other.a); b *= other.b; return *this; } Modint operator*(const Modint& other) const { return Modint(*this) *= other; } Modint& operator+=(const Modint& other) { a += other.a; if (a >= P * 2) a -= P; if (a >= P * 2) a -= P; b += other.b; return *this; } Modint operator+(const Modint& other) const { return Modint(*this) += other; } Modint pow(const Modint& other) const { return {pow(a, other.b.a), b.pow(other.b)}; }; }; template <> struct Modint<1> { uint32_t a; Modint(uint64_t x) : a(bool(x)) {} uint32_t val() const { return 0; } Modint& operator*=(const Modint& other) { a &= other.a; return *this; } Modint operator*(const Modint& other) const { return Modint(*this) *= other; } Modint& operator+=(const Modint& other) { a |= other.a; return *this; } Modint operator+(const Modint& other) const { return Modint(*this) += other; } Modint pow(const Modint& other) const { return {a || !other.a}; } }; using mint = Modint<1000000007>; // 素因数分解 計算量O(√N) map prime_factor(ll N) { map res; for (ll i = 2; i * i <= N; i++) { while (N % i == 0) { res[i]++; N /= i; } } if (N != 1) { // N が素数の場合 res[N] = 1; } return res; } bool exist_only_2and3(map mp) { if (mp.size() > 2) return false; for (auto&& [x, y] : mp) { if (x != 2 and x != 3) return false; } return true; } mint fk(ll x, ll k) { auto pf = prime_factor(x); while (!exist_only_2and3(pf) and k > 0) { map tmp; for (auto&& [x, y] : pf) { auto pf_x = prime_factor(x + 1); for (auto&& [xx, yy] : pf_x) { tmp[xx] += yy; } } pf = tmp; k--; } dbg(k); for (auto&& [x, y] : pf) { dbg(x, y); } mint res = 1; if (k == 0) { for (auto&& [x, y] : pf) { res *= mint(x).pow(y); } return res; } else { ll pw = k / 2; ll rm = k % 2; mint pwr2 = mint(pf[2]) * mint(2).pow(pw); mint pwr3 = mint(pf[3]) * mint(2).pow(pw); dbg(pw, rm, pwr2.val(), pwr3.val()); if (rm == 0) { res *= mint(2).pow(pwr2); res *= mint(3).pow(pwr3); } else { res *= mint(3).pow(pwr2); res *= mint(2).pow(pwr3 * 2); } return res; } } void solve([[maybe_unused]] int test) { ll n, k; cin >> n >> k; mint ans = 1; auto pf = prime_factor(n); for (auto&& [x, y] : pf) { mint tmp = fk(x, k).pow(y); ans *= tmp; } cout << ans.val() << endl; } int main() { cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(12); int testcase_size = 1; // cin >> testcase_size; for (int _t = 0; _t < testcase_size; _t++) { solve(_t); } // dbg(fk(2, 4).val()); } /* -----------------------------------MY_FUNCTIONS------------------------------------ */ template ostream& operator<<(ostream& os, const pair& pp) { return os << "{" << pp.first << "," << pp.second << "}"; } template ostream& operator<<(ostream& os, const vector& V) { if (V.empty()) return os << "[]"; os << "["; for (ll i = 0; i < (ll)V.size(); i++) { os << V[i] << (i == int(V.size() - 1) ? "]" : ","); } return os; } template ostream& operator<<(ostream& os, const vector>& VV) { if (VV.empty()) return os << "[[]]"; os << "[\n"; for (auto&& V : VV) { os << V << "\n"; } os << "]"; return os; } template ostream& operator<<(ostream& os, const vector>>& VVV) { if (VVV.empty()) return os << "[[[]]]"; os << "[" << "\n"; int cnt = 0; for (auto&& VV : VVV) { os << cnt++ << VV << "\n\n"; } os << "]"; return os; } template ostream& operator<<(ostream& os, const set& SS) { if (SS.empty()) return os << "[]"; os << "["; auto ii = SS.begin(); for (; ii != SS.end(); ii++) os << *ii << (ii == prev(SS.end()) ? "]" : ","); return os; } template ostream& operator<<(ostream& os, const map& MM) { if (MM.empty()) return os << "[{:}]"; os << "["; auto ii = MM.begin(); for (; ii != MM.end(); ii++) os << "{" << ii->first << ":" << ii->second << "}" << (ii == prev(MM.end()) ? "]" : ","); return os; } void debug_out() { cerr << endl; } void debug_out_vl(vector V) { const int MAX_SIZE = min((int)V.size(), MAX_DUBUG_SIZE); cerr << "\033[33m"; if (V.empty()) { cerr << "[]" << endl; return; } cerr << "["; for (int i = 0; i < MAX_SIZE; i++) { if (V[i] == LINF) cerr << "INF"; else cerr << V[i]; if (i == (int)V.size() - 1) cerr << "]\n"; else if (i == MAX_DUBUG_SIZE - 1) cerr << ",...\n"; else cerr << ","; } return; } void debug_out_vvl(vector> VV) { cerr << "\033[33m"; if (VV.empty()) { cerr << "[[]]" << endl; return; } cerr << "[\n"; int MAX_ROW = min((int)VV.size(), MAX_DUBUG_SIZE); for (int i = 0; i < MAX_ROW; i++) { const int MAX_COLUMN = min((int)VV[i].size(), MAX_DUBUG_SIZE); if (VV[i].empty()) { cerr << "[]" << endl; continue; } cerr << "["; for (int j = 0; j < MAX_COLUMN; j++) { if (VV[i][j] == LINF) cerr << "INF"; else cerr << VV[i][j]; if (j == (int)VV[i].size() - 1) cerr << "]\n"; else if (j == MAX_DUBUG_SIZE - 1) cerr << ",...\n"; else cerr << ","; } if (i != (int)VV.size() - 1 and i == MAX_DUBUG_SIZE - 1) { cerr << ":\n:\033[m\n"; return; } } cerr << "]\033[m\n"; return; } template void debug_out(Head H, Tail... T) { if constexpr (std::is_same_v>) { debug_out_vl(H); } else if constexpr (std::is_same_v>>) { debug_out_vvl(H); } else { cerr << "\033[33m" << H << "\033[m "; } debug_out(T...); } template bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } return false; } template bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } return false; } template T pwr(T x, ll n) { T res = 1; for (int i = 0; i < n; i++) { res *= x; } return res; } ll fact(ll n) { ll res = 1; for (ll i = 1; i <= n; i++) res *= i; return res; } ll comb(ll n, ll r) { // comb(60, 30)までオーバーフローなし ll res = 1; for (int i = 1; i <= r; i++) { res *= n--; res /= i; } return res; } ll ctoll(char c) { if (c < '0' or '9' < c) { cerr << "\n\033[33m ctoll に '0'~'9' 以外の文字が入りました.\033[m\n" << endl; } return ll(c - '0'); } char lltoc(ll n) { if (n < 0 or 9 < n) { cerr << "\n\033[33m lltoc に 0 ~ 9 以外の数字が入りました.\033[m\n" << endl; } return char(n + '0'); }