python-algorithm

[백준] 19944

무적김두칠 2020. 12. 17. 10:43

1
2
3
4
5
n,m=map(int,input().split())
if m==1 or m==2:
    print("NEWBIE!")
elif n<m: print("TLE!")
else : print("OLDBIE!")
cs
반응형