问题1034--No Brainer

1034: No Brainer

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 32 MB

题目描述

Zombies love to eat brains. Yum.

输入

The first line contains a single integer n indicating the number of data sets. The following n lines each represent a data set. Each data set will be formatted according to the following description: A single data set consists of a line "X Y", where X is the number of brains the zombie eats and Y is the number of brains the zombie requires to stay alive.

输出

For each data set, there will be exactly one line of output. This line will be "MMM BRAINS" if the number of brains the zombie eats is greater than or equal to the number of brains the zombie requires to stay alive. Otherwise, the line will be "NO BRAINS".

样例输入 Copy

3
4 5
3 3
4 3


样例输出 Copy

NO BRAINS
MMM BRAINS
MMM BRAINS


来源/分类