#include #include using namespace std; int h, w; string s[50]; int main() { int i, j; cin >> h >> w; for (i = 0; i < h; i++) cin >> s[i]; int ans = 0; for (i = 0; i < h; i++) { for (j = 0; j < w; j++) { if (s[i][j] == 'W') ans++; } } cout << ans << endl; return 0; }