← Back to List

19944번: 뉴비의 기준은 뭘까? ↗

Solutions

Python 3
126 B | 126 chars
N,M=map(int,input().split())
if M == 1 or M == 2:
    print("NEWBIE!")
elif M<=N:
    print("OLDBIE!")
else:
    print("TLE!")