2 lines
100 B
Python
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!") |