-Code
h, l, a, b = map(int, input().split())
if (h >= a / 2 and l >= b) or (h >= b / 2 and l >= a):
print("YES")
else:
print("NO")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 28940번 Дневник Гравити Фолз (0) | 2024.02.19 |
---|---|
[백준/파이썬] 31429번 SUAPC 2023 Summer (0) | 2024.02.19 |
[백준/파이썬] 25893번 Majestic 10 (0) | 2024.02.17 |
[백준/파이썬] 13496번 The Merchant of Venice (0) | 2024.02.16 |
[백준/파이썬] 25206번 너의 평점은 (1) | 2024.02.15 |