#include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; typedef pair Pr; string s; char board[10][10]; int b, w; int main() { cin >> s; for (int i = 0; i < 8; i++) { for (int j = 0; j < 8; j++) { char c; cin >> c; if (c == 'b')b++; else if(c == 'w')w++; } } if (b == w ) { cout << s << endl; } else if(b > w){ if (s == "yukiko")cout << "oda" << endl; if (s == "oda")cout << "yukiko" << endl; } else { cout << s << endl; } return 0; }