#include <stdio.h>

int main(){
	int yoko,tate;
	scanf("%d%d",&yoko,&tate);
	
	char str[1];
	scanf("%s",str);
	for(int i = 0;i < tate;i ++){
		for(int j = 0;j < yoko;j ++){
			printf("%s",str);
			if(str[0] == 'W'){
				str[0] = 'B';
			}else{
				str[0] = 'W';
			}
		}
		printf("\n");
	}
}