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

[백준/파이썬] 9771번 Word Searching

by 현장 2024. 8. 28.

-Code

w = input()
res = 0

while True:
    try:
        s = input()
        res += s.count(w)
    except:
        break

print(res)