#include #include #include #include using namespace std; #define REP(i,a,b) for(i=a;i> s; rep(i,8) cin >> b[i]; rep(i,8) { rep(j,8) { if(b[i][j] == 'b' || b[i][j] == 'w') cnt++; } } if(strcmp(s,"oda") == 0 ^ cnt % 2 == 1) cout << "oda" << endl; else cout << "yukiko" << endl; return 0; }