poj2027[url]http://poj.org/problem?id=2027[/url]
just for fun
just for fun
#include <iostream>
using namespace std;
int main()
{
int n;
cin>>n;
for(int i=0;i<n;i++)
{
int a,b;
cin>>a>>b;
if(a<b)
cout<<"NO BRAINS"<<endl;
else
cout<<"MMM BRAINS"<<endl;
}
return 0;
}