#include #include using namespace std; int main() { string s; cin >> s; string b; int x = 0; for(int i = 0; i < 8; i++){ cin >> b; for(int j = 0; j < 8; j++) if(b[j] != '.') x++; } if((s == "oda" && x % 2 == 0) || (s == "yukiko" && x % 2 == 1)) cout << "oda" << endl; else cout << "yukiko" << endl; return 0; }