#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { string S; cin >> S; int b = 0; int w = 0; for (int i = 0; i < 8; i++) { string temp; cin >> temp; for (int j = 0; j < 8; j++) { if (temp[j] == 'b') { b++; continue; } if (temp[j] == 'w') { w++; continue; } } } if ((b + w) % 2 == 0) { cout << S << endl; } else { if (S == "oda") { cout << "yukiko" << endl; } else { cout << "oda" << endl; } } return 0; }