#TENKA12019C. Stones

Stones

Score : 300300 points

Problem Statement

There are NN stones arranged in a row. Every stone is painted white or black. A string SS represents the color of the stones. The ii-th stone from the left is white if the ii-th character of SS is ., and the stone is black if the character is #.

Takahashi wants to change the colors of some stones to black or white so that there will be no white stone immediately to the right of a black stone. Find the minimum number of stones that needs to be recolored.

Constraints

  • 1N2×1051 \leq N \leq 2\times 10^5
  • SS is a string of length NN consisting of . and #.

Input

Input is given from Standard Input in the following format:

NN

SS

Output

Print the minimum number of stones that needs to be recolored.

3
#.#
1

It is enough to change the color of the first stone to white.

5
#.##.
2
9
.........
0