题解 | #II play with GG#
II play with GG
https://ac.nowcoder.com/acm/problem/21299
using namespace std;
int main() {
int x,y;
cin >> x >> y;
int count=0;
if(x%2==0&&y%2==0) cout << "gg";
else cout << "ii";
}
II play with GG
https://ac.nowcoder.com/acm/problem/21299
using namespace std;
int main() {
int x,y;
cin >> x >> y;
int count=0;
if(x%2==0&&y%2==0) cout << "gg";
else cout << "ii";
}
相关推荐