天天看點

POJ 2027

菜的摳腳的一道題。。。

#include <iostream>
using namespace std;
int main(){
    int n;
    cin>>n;
    while(n--){
        int a,b;
        cin>>a>>b;
        if(a>=b) cout<<"MMM BRAINS"<<endl;
        else cout<<"NO BRAINS"<<endl;
    }
    return ;
}