#include #include #include #include #include using namespace std; int main(void) { int w, h; char c; cin >> w >> h >> c; for (int i = 0; i < h; ++i) { for (int j = 0; j < w; ++j) { if (c == 'B') { if ((i+j) % 2) cout << 'W'; else cout << 'B'; } else { if ((i+j) % 2) cout << 'B'; else cout << 'W'; } } cout << endl; } }