#include using namespace std; string S[4]; string A[4]={"akai","marui","okii","umai"}; int main(){ sort(A,A+4); int t,ans=0; cin>>t; while(t--){ for(int i=0;i<4;i++) cin>>S[i]; sort(S,S+4); bool ok=true; for(int i=0;i<4;i++){ if(S[i]!=A[i]){ ok=false; break; } } if(ok) ans++; } cout<