#include<iostream>
using namespace std;
int main(){
int n;
scanf("%d",&n);
int count=0;
string s;
cin>>s;
while(s!="End"){
if(count==n){
cout<<s<<endl;
count=0;
}
else{
if(s=="ChuiZi") cout<<"Bu"<<endl;
if(s=="Bu") cout<<"JianDao"<<endl;
if(s=="JianDao") cout<<"ChuiZi"<<endl;
count++;
}
cin>>s;
}
return 0;
}
L1-044 稳赢
最新推荐文章于 2024-05-04 15:59:43 发布