1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#include<bits/stdc++.h>
using namespace std;

int main() {
	int n, w=0;
	cin >> n;
	char c;
	bool b;
	for(int i=0; i<10; i++) {
		b = 1;
		for(int j=0; j<n/10; j++) {
			cin >> c;
			if(c=='N') b=0;
		}
		if(b) w++;	
	}
	cout << w;
	return 0;
}