0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 17:25:24 +00:00
OI-codes/Luogu/P3150/P3150.cpp

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;
}