본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 7782번 Alien

by 현장 2022. 12. 12.

-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")