0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 03:31:59 +00:00

P3150 pb的游戏(1)

R40073088
This commit is contained in:
Baoshuo Ren 2020-10-18 21:22:42 +08:00 committed by Baoshuo Ren
parent 8188ec2996
commit 0109c1cf92
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

18
problem/P3150/P3150.cpp Normal file
View File

@ -0,0 +1,18 @@
#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;
}