#include using namespace std; using ll = long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int H,W,N; cin>>H>>W>>N; stack> S; for(int i=0;i>C>>K; S.push({C,K}); } int y=0,x=0; while(!S.empty()){ auto [C,K]=S.top(); S.pop(); if(C=='R'&&y==K){ x=(x-1+W)%W; } else if(C=='C'&&x==K){ y=(y-1+H)%H; } } cout<<((y+x)%2?"black":"white")<