| 比赛 | EYOI与SBOI开学欢乐赛10th | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAA |
|---|---|---|---|
| 题目名称 | 无尽方格 | 最终得分 | 100 |
| 用户昵称 | 00000 | 运行时间 | 1.730 s |
| 代码语言 | C++ | 内存使用 | 2.34 MiB |
| 提交时间 | 2022-10-10 21:25:36 | ||
#include<bits/stdc++.h>
#define ll long long
using namespace std;
string i,j;
int n,m;
int main(){
freopen("wjfg.in","r",stdin);
freopen("wjfg.out","w",stdout);
while(cin>>i>>j)
{
if(i=="**"||j=="**")
{
cout<<"sbsyb"<<endl;
continue;
}
if(i==j) cout<<"sbsyb"<<endl;
else cout<<"ngm"<<endl;
}
return 0;
}