#include using namespace std; int main() { string sente; string gote; cin >> sente; if( sente == "oda" ) { gote = "yukiko"; } else { gote = "oda"; } int cnt = 0; char B[8+1]; for( int i = 0; i < 8; i++ ) { cin >> B; for( int j = 0; j < 8; j++ ) { if( B[j] == 'b' || B[j] == 'w' ) { cnt++; } } } cout << ((cnt-4)%2==0?sente:gote) << endl; return 0; }