본문 바로가기
알고리즘/백준

백준-10807번(개수 세기)-python3

by nyeongha 2023. 11. 30.
n=int(input())
l=list(map(int,input().split()))
print(l.count(int(input())))