-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")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 27159번 노 땡스! (0) | 2023.02.16 |
---|---|
[백준/파이썬] 9782번 Median (0) | 2023.02.15 |
[백준/파이썬] 26340번 Fold the Paper Nicely (0) | 2023.02.13 |
[백준/파이썬] 5358번 Football Team (0) | 2023.02.12 |
[백준/파이썬] 27213번 Boundary Cells (0) | 2023.02.10 |