1185. No Brainer

Easy基本数据类型循环

时间限制:2000 ms

内存限制:256 MiB

题面

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".

样例

输入

3
4 5
3 3
4 3

输出

NO BRAINS
MMM BRAINS
MMM BRAINS