#include using namespace std; int main(){ int t; cin >> t; for(int i = 0; i < t; ++i){ long long n; cin >> n; if(n == 1){ cout << 'P' << endl; } else{ cout << 'K' << endl; } } return 0; }