n, m = gets.split.map(&:to_i) ans = n * m n.times do s = gets.chomp ans -= s.count(?R) end p ans