#include using namespace std; int main() { string s, sente = "oda", gote = "yukiko"; cin >> s; if (s == "yukiko") { sente = "yukiko", gote = "oda"; } int cnt = 0; for (int i = 0; i < 8 * 8; ++i) { char c; cin >> c; if (c != '.') cnt++; } cout << ((cnt % 2 == 0) ? sente : gote) << endl; return 0; }