poj2027

简单题

#include <cstdio>

int main()
{
    int t;
    scanf("%d", &t);
    while (t--)
    {
        int a, b;
        scanf("%d%d", &a, &b);
        if (a >= b)
            puts("MMM BRAINS");
        else
            puts("NO BRAINS");
    }
    return 0;
}
View Code

 

posted @ 2013-06-12 20:53  金海峰  阅读(156)  评论(0编辑  收藏  举报