Files
CodeObject/zeta/py/completed/10807.py
2025-05-07 04:44:30 +09:00

8 lines
126 B
Python

N = int(input())
L = list(map(int, input().split()))
v = int(input())
c = 0
for x in L:
if x == v:
c += 1
print(c)