#include #include using namespace std; int main() { int input; //入力 bool rBit = true, cBit = true; //Rbit, Cbit char str[10]; //文字 //入力(回数だけ重要) scanf("%d %d", &input, &input); scanf("%d", &input); rewind(stdin); while(input) { scanf("%s", str); rewind(stdin); if(!(strstr("R 0", str))) { rBit ^= 1; } if(!(strstr("C 0", str))) { cBit ^= 1; } --input; } cout << ((rBit ^ cBit) ? ("black") : ("white")) << endl; return 0; }