Files
CodeObject/zeta_python/completed/10807.py
2024-02-19 13:23:50 +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)