n = read_line.to_i s = read_line.chars i = s.index('#').not_nil! max = 0 cur = 0 (i + 1).upto(n - 1) do |i| if s[i] == '#' cur += 1 max = {max, cur}.max else cur -= 1 end end puts n - i + max