mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:18:47 +00:00
18 lines
278 B
C++
18 lines
278 B
C++
#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;
|
|
} else {
|
|
cout << "zs wins" << endl;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|