문제 바로가기> 백준 19944번: 뉴비의 기준은 뭘까?
조건문을 사용하여 간단하게 풀 수 있다.
def solution():
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
is_new, is_old = False, False
if M<=2: is_new = True
if M<=N and not is_old: is_old = True
if is_new: print("NEWBIE!")
elif is_old: print("OLDBIE!")
else: print("TLE!")
solution()