#include using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 998244353; // constexpr int MOD = 1000000007; constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1}; constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}; constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1}; template inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; } template inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; template std::vector prime_sieve(const int n) { std::vector smallest_prime_factor(n + 1), prime; std::iota(smallest_prime_factor.begin(), smallest_prime_factor.end(), 0); for (int i = 2; i <= n; ++i) { if (smallest_prime_factor[i] == i) [[unlikely]] prime.emplace_back(i); for (const int p : prime) { if (i * p > n || p > smallest_prime_factor[i]) break; smallest_prime_factor[i * p] = p; } } return GETS_ONLY_PRIME ? prime : smallest_prime_factor; } struct OsaK { const std::vector smallest_prime_factor; explicit OsaK(const int n) : smallest_prime_factor(prime_sieve(n)) {} std::vector> query(int n) const { std::vector> res; while (n > 1) { const int prime = smallest_prime_factor[n]; int exponent = 0; for (; smallest_prime_factor[n] == prime; n /= prime) { ++exponent; } res.emplace_back(prime, exponent); } return res; } }; int main() { constexpr int N = 3000000; const OsaK osa_k(N); const auto is_prime = [&](const int p) -> bool { return osa_k.smallest_prime_factor[p] == p; }; array ar{}; FOR(i, 3, N + 1) ar[i] = ar[i - 1] + is_prime(i); int t; cin >> t; while (t--) { int n; cin >> n; if (is_prime(n)) { cout << "P\n"; } else { cout << ((n - 2 - (ar[n - 1] - ar[n / 2])) % 2 == 0 ? "P\n" : "K\n"); } } return 0; }