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