#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
using namespace std;
typedef long long int lont;
int main() {
	int W, H;
	char S;
	cin >> W >> H >> S;
	if (S == 'W') {
		for (int ia = 0; ia < H; ia++) {
			for (int ib = 0; ib < W; ib++) {
				if (ia % 2 == ib % 2) {
					cout << 'W';
				}
				else {
					cout << 'B';
				}
			}
			cout << endl;
		}
	}
	else if (S == 'B') {
		for (int ic = 0; ic < H; ic++) {
			for (int id = 0; id < W; id++) {
				if (ic % 2 == id % 2) {
					cout << 'B';
				}
				else {
					cout << 'W';
				}
			}
			cout << endl;
		}
	}
	}