n = int(input())
a= list(map(int, input().split()))
cnt=0
for i in range(len(a)):
if a[i]==n:
cnt+=1
print(cnt)
'백준 풀이' 카테고리의 다른 글
백준 1032번 파이썬 (0) | 2022.08.22 |
---|---|
백준 1100번 파이썬 (0) | 2022.08.22 |
백준 10162번 파이썬 (0) | 2022.08.22 |
백준 5585번 파이썬 (0) | 2022.08.21 |
백준 3053번 파이썬 (0) | 2022.08.21 |