ํค์ ๋ชธ๋ฌด๊ฒ๊ฐ ๋ ํด๋( > ) ๋ฉ์น์นด ๋ ํฌ๋ค ๋ผ๊ณ ํ๋ค. ๋ฉ์น ๋ฑ์๋ ์์ ๋ณด๋ค ๋ "ํฐ ๋ฉ์น"์ ์ฌ๋์ ์๋ก ์ ํด์ง๋ค
1. people ๋ฆฌ์คํธ์ ๊ฐ ์ฌ๋์ ํค์ ๋ชธ๋ฌด๊ฒ๋ฅผ ๋ฆฌ์คํธ๋ก ์ถ๊ฐ
2. people ๋ฆฌ์คํธ์์ MyHeight(mh), MyWeight(mw), YourHeight(yh), YourWeight(yw) ๋ฅผ ๋ถ๋ฌ์ค๊ณ ๋น๊ตํ์ฌ ๋ฉ์น๊ฐ ๋ ํด ๋ count++ ( count๋ 1๋ก ์ด๊ธฐํ. ์์ ๋ณด๋ค ๋ฉ์น๊ฐ ํฐ ์ฌ๋์ด ์๋ฌด๋ ์๋ค๋ฉด 1๋ฑ )
3. count ๋ฅผ ์ถ๋ ฅ
# 7568.py
n = int(input())
people = []
for i in range(n):
people.append(list(map(int, input().split())))
for mh, mw in people:
count = 1
for yh, yw in people:
if mh < yh and mw < yw:
count += 1
print(count, end=' ')