N = int(input())
a = []
a = list(map(int,input().split()))
v = int(input())
print(a.count(v))
list ๊ฐ์ ๊ณต๋ฐฑ๊ฐ์ฃผ๊ณ ๋ฐ์์ค๊ธฐ
ํ์ด์ฌ์ ๊ตณ์ด N์ ๋ฐ์์๋ ์ธ ํ์๊ฐ ์์ด๋ณด์ธ๋ค (?)
- list() ํจ์
list ํจ์๋ฅผ ์ฌ์ฉํ๋ฉด list ์์ ์ ๋ ฅํ ๊ฐ์ด ์ฐจ๋ก๋๋ก ๋ค์ด๊ฐ๋ค.
- count() ํจ์
๋ฆฌ์คํธ.count(์ฐพ์๋จ์ด) ์ ๋ ฅ
์ฐพ๋ ๋จ์ด์ ๊ฐ์๋ฅผ ๋ฐํํด์ค๋ค.