Skip to content
Snippets Groups Projects
6.py 138 B
Newer Older
hacker717's avatar
hacker717 committed
arr = []
for _ in range(int(input())):
    arr += input().split()

c = 0
for s in arr:
    if s == "зайка":
        c += 1

print(c)