5 lines
85 B
Python
5 lines
85 B
Python
n=int(input())
|
|
arr=list(map(int,input().split()))
|
|
s=int(input())
|
|
|
|
print(arr.count(s)) |