Beakjoon&프로그래머스/파이썬

[백준/파이썬] 29790번 임스의 메이플컵

현장 2023. 10. 4. 15:42

-Code

n, u, l = map(int, input().split())

if n < 1000:
    print("Bad")
elif u >= 8000 or l >= 260:
    print("Very Good")
else:
    print("Good")