/** @file 692.cpp @title No.692 square1001 and Permutation 1 - yukicoder @url https://yukicoder.me/problems/no/692 **/ #include using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int N; cin >> N; if (N != 1) { cout << "Petr" << endl; } else { cout << "square1001" << endl; } return 0; }