#include #include using namespace std; using namespace atcoder; using mint = modint1000000007; __attribute__((constructor)) void fast_io() { ios::sync_with_stdio(false); cin.tie(nullptr); } void extgcd(int a, int b, int& x, int& y) { if (b == 0) { x = 1, y = 0; return; } extgcd(b, a % b, y, x); y -= a / b * x; } constexpr int mod = 1000000007; void solve() { int x, k; cin >> x >> k; int a, b; extgcd(k, mod - 1, a, b); a += mod - 1; cout << mint(x).pow(a).val() << '\n'; } int main() { int t; cin >> t; while (t--) solve(); }