import java.util.Scanner;
import java.util.InputMismatchException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class CheckeredPattern {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            //入力と範囲が正しいかのチェック
            int Width = scanner.nextInt();
            int Height = scanner.nextInt();
            String Color = scanner.next();
            String AnotherColor = "";
            
            if(Width < 1 || Width > 50){
                System.out.println("Wは1≦W≦50の範囲で入力してください");
                System.exit(0);
            }
            if(Height < 1 || Height > 50){
                System.out.println("Hは1≦H≦50の範囲で入力してください");
                System.exit(0);
            }
            Pattern patternA = Pattern.compile(".*[^B W].*");
            Matcher matcherA = patternA.matcher(Color);
            if (matcherA.find()) {
                System.out.println("小文字アルファベットで入力してください");
                System.exit(0);
            }
            //AnotherColorの定義
            if(Color.equals("B")){
                AnotherColor += "W";
            }else{
                AnotherColor += "B";
            }
            
            //必要回数のループ処理
            for(int i = 0 ; i < Height ; i++){
                for(int j = 0 ; j < Width ; j++){
                    if((i + j) % 2 == 0 ){
                        System.out.print(Color);
                    }else{
                        System.out.print(AnotherColor);
                    }
                }
                //Width回のループ後の改行
                System.out.println(" ");
            }
          
        }catch(InputMismatchException e){
            System.out.println("数値で入力してください");
        }catch(Exception E){
            System.out.println("想定外のエラーです");
        }
    }   
}