Given a string s which contains lowercase english letters and dot sign (.) (e.g: abc.d.ee.g). Your task is to replace substring '..' with a substring '.' in the given string i.e the string should not contain 2 consecutive dot signs. You need to calculate the no. of replacements required for this task.
First line contains two integers L denoting length of string and N denoting no. of queries on the string.
Second line of input contains string s
Each of the next N lines contains 2 inputs k(integer) and p(lowercase letter/dot sign).
Your task is to replace k th letter in given string with given letter p and count the replacements.
For the next query use the string modified in previous query.