#include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; #define int long long #define double long double typedef vector VI; typedef pair pii; typedef vector VP; typedef vector VS; typedef priority_queue PQ; templatebool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } templatebool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } #define fore(i,a) for(auto &i:a) #define REP(i,n) for(int i=0;i, greater > q2; bool solve(VS B) { int cnt = 0; REP(i, 8)REP(j, 8)if (B[i][j] != '.')cnt++; if (cnt % 2 == 0)return true; return false; } signed main() { cin.tie(0); ios::sync_with_stdio(false); string S; cin >> S; VS B(8); REP(i, 8)cin >> B[i]; if (solve(B))cout << S << endl; else cout << (S == "oda" ? "yukiko" : "oda") << endl; return 0; }