#pragma GCC optimize("Ofast") #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } inline double time() { return static_cast(chrono::duration_cast(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int h,w; cin >> h >> w; int n; cin >> n; vector s(n); vector k(n); for(int i=0;i> s[i] >> k[i]; } int x = 0, y = 0; for(int i=n-1;i>=0;i--){ if(s[i] == 'R'){ if(k[i] == x){ y--; if(y == -1)y = w-1; } } else{ if(k[i] == y){ x--; if(x == -1)x = h-1; } } } if((x+y)%2 == 0){ cout << "white" << endl; } else{ cout << "black" << endl; } }