N, M = gets.split.map(&:to_i) ans = 0 N.times do s = gets.chomp ans += s.count('W') end puts ans