#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, M; cin >> N >> M; int res = 0; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { char s; cin >> s; if (s == 'W') res++; } } cout << res << '\n'; return 0; }