#include using namespace std; const int N = 2007; int a, b, c, d; int main(){ cin >> a >> b >> c >> d; if((a + b)%2 == (c + d)%2) puts("black"); else puts("white"); return 0; }