2025-09-13 20:47:03 +09:00

2 lines
100 B
Python

N ,M = map(int, input().split())
print("NEWBIE!" if M==1 or M==2 else "OLDBIE!" if M<=N else "TLE!")