← Back to List

4562번: No Brainer ↗

Solutions

Python 3
111 B | 111 chars
for i in range(int(input())):
  a,b = map(int, input().split())
  print("NO BRAINS" if a < b else "MMM BRAINS")