ans=0 N,M=map(int,input().split()) for i in range(N): S,R=input().split() R=int(R) if R>=1200 and S[:4]!="oooo": ans+=1 print(ans)