#include<cstdio>
using namespace std;
int main(){
int nCase;
scanf("%d",&nCase);
while(nCase--){
int a,b;
scanf("%d %d",&a,&b);
if(a<b){
printf("NO BRAINS\n");
}else if(a>=b){
printf("MMM BRAINS\n");
}
}
return 0;
}
poj2027 No Brainer!
最新推荐文章于 2017-04-26 20:57:30 发布