2020-10-18 13:22:42 +00:00
|
|
|
#include <bits/stdc++.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
int n, t;
|
|
|
|
cin >> n;
|
|
|
|
while (n--) {
|
|
|
|
cin >> t;
|
|
|
|
if (t % 2 == 0) {
|
|
|
|
cout << "pb wins" << endl;
|
2021-11-19 09:01:13 +00:00
|
|
|
} else {
|
2020-10-18 13:22:42 +00:00
|
|
|
cout << "zs wins" << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|