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

[백준/파이썬] 27245번 Комната

현장 2023. 2. 14. 14:57

-Code

w = int(input())
l = int(input())
h = int(input())

if h * 2 <= min(w, l) and min(w, l) * 2 >= max(w, l):
    print("good")
else:
    print("bad")