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

[백준/파이썬] 26489번 Gum Gum for Jay Jay

by 현장 2022. 12. 18.

-Code

cnt = 0
while 1:
    try:
        s = input()
        if s == "gum gum for jay jay":
            cnt += 1
    except EOFError:
        break