poj 2027(水题)

#include<iostream>
#include<cstdio>
using namespace std;
int main(){
    int n,x,y;
    scanf("%d",&n);
    while(n--){
        scanf("%d%d",&x,&y);
        if(x>=y)printf("MMM BRAINS\n");
        else    printf("NO BRAINS\n");
    }
    return 0;
}

 

posted @ 2021-07-30 21:20  智人心  阅读(21)  评论(0)    收藏  举报