// No.88 次はどっちだ // https://yukicoder.me/problems/no/88 // #include #include #include #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); string S; cin >> S; int blank = 0; for (auto i = 0; i < 8; ++i) { string tmp; cin >> tmp; blank += count(tmp.begin(), tmp.end(), '.'); } vector table {"yukiko", "oda"}; if (S == "oda") { table[0] = "oda"; table[1] = "yukiko"; } cout << table[blank % 2] << endl; }