알고리즘

백준 문제 풀이 10797번 - Python

Llife 2019. 2. 19. 17:16
Date = input()
CarNumber = input().split(" ")
count = 0

for i in CarNumber:
    if Date == i:
        count += 1

print(count)