http://poj.org/problem?id=2027
判断a<b......脸皮这两天又厚了不少、、、这种题也拿来充数、、、忏悔ing
View Code
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main()
{
int t;
int a,b;
scanf("%d",&t);
while(t--)
{
scanf("%d%d",&a,&b);
if(a<b)
printf("NO BRAINS\n");
else
printf("MMM BRAINS\n");
}
return 0;
}