#include<iostream>
using namespace std;

int main() {
  int a, b, c, d;
  cin >> a >> b >> c >> d;
  if ((a + b + c + d) % 2 == 0) {
    cout << "black" << endl;
  } else {
    cout << "white" << endl;
  }
  return 0;
}
