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