#abc229d. [abc229_d]Longest X

[abc229_d]Longest X

Problem Statement

Given is a string SS consisting of X and ..

You can do the following operation on SS between 00 and KK times (inclusive).

  • Replace a . with an X.

What is the maximum possible number of consecutive Xs in SS after the operations?

Constraints

  • 1leqSleq2times1051 \\leq |S| \\leq 2 \\times 10^5
  • Each character of SS is X or ..
  • 0leqKleq2times1050 \\leq K \\leq 2 \\times 10^5
  • KK is an integer.

Input

Input is given from Standard Input in the following format:

SS KK

Output

Print the answer.


Sample Input 1

XX...X.X.X.
2

Sample Output 1

5

After replacing the Xs at the 77-th and 99-th positions with X, we have XX...XXXXX., which has five consecutive Xs at 66-th through 1010-th positions.
We cannot have six or more consecutive Xs, so the answer is 55.


Sample Input 2

XXXX
200000

Sample Output 2

4

It is allowed to do zero operations.