#include using namespace std; int main(void){ int t; cin >> t; vector query(t); for(auto& n : query){ cin >> n; } for(int n : query){ char ans = (n == 1) ? 'P' : 'K'; cout << ans << endl; } return 0; }