n = int(input()) res = 0 amaou = ["akai", "marui", "okii", "umai"] for i in range(n): s = input().split() s.sort() if s == amaou: res += 1 print(res)