#include #include int main() { long i, j, k; long ans; long count = 0; std::string str[10]; for(i = 0; i < 9; i++) { std::cin >> str[i]; } for(i = 1; i <= 9; i++) { for(j = 0; j < 8; j++) { if(str[i][j] == '.') { count++; } } } if((count&0x01) == 0) { std::cout << str[0] << std::endl; } else { if(str[0] == "oda") { std::cout << "yukiko" << std::endl; } else { std::cout << "oda" << std::endl; } } return 0; }