#A1002P938. Chips
Chips
Description
There are chips arranged in a circle, numbered from to .
Initially each chip has black or white color. Then iterations occur. During each iteration the chips change their colors according to the following rules. For each chip , three chips are considered: chip itself and two its neighbours. If the number of white chips among these three is greater than the number of black chips among these three chips, then the chip becomes white. Otherwise, the chip becomes black.
Note that for each from to two neighbouring chips have numbers and . The neighbours for the chip are and . The neighbours of are and .
The following picture describes one iteration with . The chips , and are initially black, and the chips , and are white. After the iteration , and become black, and , and become white.

Your task is to determine the color of each chip after iterations.
The first line contains two integers and — the number of chips and the number of iterations, respectively.
The second line contains a string consisting of characters "W" and "B". If the -th character is "W", then the -th chip is white initially. If the -th character is "B", then the -th chip is black initially.
Print a string consisting of characters "W" and "B". If after iterations the -th chip is white, then the -th character should be "W". Otherwise the -th character should be "B".
Input
The first line contains two integers and — the number of chips and the number of iterations, respectively.
The second line contains a string consisting of characters "W" and "B". If the -th character is "W", then the -th chip is white initially. If the -th character is "B", then the -th chip is black initially.
Output
Print a string consisting of characters "W" and "B". If after iterations the -th chip is white, then the -th character should be "W". Otherwise the -th character should be "B".
Samples
Note
The first example is described in the statement.
The second example: "WBWBWBW" "WWBWBWW" "WWWBWWW" "WWWWWWW". So all chips become white.
The third example: "BWBWBW" "WBWBWB" "BWBWBW" "WBWBWB" "BWBWBW".