-Code
n = int(input())
b1, b2 = map(int, input().split())
result = 0
for _ in range(n):
a, b, c, d = map(int, input().split())
if a <= b1 <= c and b <= b2 <= d:
result += 1
print("Yes" if result > 0 else "No")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 26057번 Большой удой (0) | 2022.12.14 |
---|---|
[백준/파이썬] 26307번 Correct (0) | 2022.12.13 |
[백준/파이썬] 24084번 次の文字 (Next Character) (0) | 2022.12.11 |
[백준/파이썬] 11295번 Exercising (0) | 2022.12.10 |
[백준/파이썬] 9664번 HERITAGE (0) | 2022.12.09 |