eolymp
bolt
Try our new interface for solving problems
Problems

Game strike out

Game strike out

Strip of paper is divided into n cells. Two players make turns picking and crossing out exactly k empty adjacent cells. The winner is the one who made the last move. Both players follow the correct strategy. By the given position of the game find the winner.

Input

The first line contains numbers n and k (1kn40). Second line contains n symbols: the Latin capital 'O' - an empty cell, the Latin title 'X' - crossed out cell.

Output

Print a single number: 1 if the winner who first makes a move, and 2 - if you win the second; 0 - if the course can be done.

Time limit 1 second
Memory limit 128 MiB
Input example #1
4 2
OOOO
Output example #1
1
Input example #2
5 2
OOOOO
Output example #2
2
Input example #3
7 2
OXXOXXO
Output example #3
0