n=int(input()) res=0 r={'akai','marui','okii','umai'} for i in range(n): s=set(map(str,input().split())) if s.issuperset(r): res+=1 print(res)