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

18 lines
278 B
C++
Raw Normal View History

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