import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int w = koko.nextInt();
        int h = koko.nextInt();
        String c = koko.next();
        char[][] iro = new char[h][w];
        if(c.equals("B")){
            for(int i=0; i<h; i++){
                for(int j=0; j<w; j++){
                    if((i+j)%2==0){
                        iro[i][j]='B';
                    }else{
                        iro[i][j]='W';
                    }
                }
                System.out.println(iro[i]);
            }
        }else{
            for(int i=0; i<h; i++){
                for(int j=0; j<w; j++){
                    if((i+j)%2==0){
                        iro[i][j]='W';
                    }else{
                        iro[i][j]='B';
                    }
                }
                System.out.println(iro[i]);
            }
        }
    }
}