poj2027简单题

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int n,x,y;
    scanf("%d",&n);
    while(n--)
    {
        scanf("%d %d",&x,&y);
        if(x>=y)
            printf("MMM BRAINS
");
        else
            printf("NO BRAINS
");
    }
    return 0;
}
原文地址:https://www.cnblogs.com/gabygoole/p/4536355.html