-Code
w = input()
res = 0
while True:
try:
s = input()
res += s.count(w)
except:
break
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24803번 Provinces and Gold (0) | 2024.08.30 |
---|---|
[백준/파이썬] 5340번 Secret Location (0) | 2024.08.29 |
[백준/파이썬] 6903번 Trident (0) | 2024.08.27 |
[백준/파이썬] 6190번 Another Cow Number Game (0) | 2024.08.26 |
[백준/파이썬] 6975번 Deficient, Perfect, and Abundant (0) | 2024.08.25 |