본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25277번 Culture shock

by 현장 2022. 11. 7.

-Code

ban = ['he', 'him', 'she', 'her']
n = int(input())
line = list(input().split())
cnt = 0
for i in line:
    if i in ban:
        cnt += 1
print(cnt)