#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cmath>
#include <iomanip>
using namespace std;
typedef long long LL;

int main(){
    LL W, H;
    char C;
    cin >> W >> H >> C;
    for(int y = 0; y < H; y++){
        for(int x = 0; x < W; x++){
            if((x+y) % 2 == 0){
                cout << C;
            }else{
                if(C=='B'){
                    cout << 'W';
                }else{
                    cout << 'B';
                }
            }
        }
        cout << endl;
    }
    return 0;
}