#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int h, w; //不要なワーク int input; //入力 bool rBit = true, cBit = true; //Rbit, Cbit string str1, str2; //文字列 cin >> h >> w; cin >> input; while(input) { cin >> str1 >> str2; str1 += str2; if(str1 == "R0") { if(!(w & 1)) { rBit = !rBit; ++w; } rBit = !rBit; } if(str1 == "C0") { if(!(h & 1)) { cBit = !cBit; ++h; } cBit = !cBit; } --input; } cout << ((rBit ^ cBit) ? ("black") : ("white")) << endl; return 0; }