BOJ - 19944 - 뉴비의 기준은 뭘까?

Updated:

import sys

def solution():
    N, M = map(int, sys.stdin.readline().split())

    if M == 1 or M == 2:
        print("NEWBIE!")
    elif M > N:
        print("TLE!")
    else:
        print("OLDBIE!")

solution()

https://www.acmicpc.net/problem/19944

Categories:

Updated:

Leave a comment