728x90
반응형

단순 구현 문제이다.

N, M = map(int, input().split())
if M <= 2:
    print("NEWBIE!")
elif M > 2 and M <= N:
    print("OLDBIE!")
else:
    print("TLE!")
728x90
반응형

+ Recent posts