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

[백준/파이썬] 26068번 치킨댄스를 추는 곰곰이를 본 임스 2

by 현장 2022. 12. 4.

-Code

cnt = 0

for _ in range(int(input())):
    day = list(input().split('-'))
    if int(day[1]) <= 90:
        cnt += 1
print(cnt)