fork download
  1. n=int(input())
  2. k=0
  3. for i in range(n):
  4. a=int(input())
  5. if a%6==0 and a%10==4 and a>9 and a<100:
  6. k=k+1
  7. print(k)
Success #stdin #stdout 0.02s 9292KB
stdin
7
14
24
44
54
67
66
13
stdout
2