#include int main(){ char str[10]; scanf("%s",str); int count = 0; for(int i = 0;i < 8;i ++){ char tmp[8]; for(int j = 0;j < 8;j ++){ scanf("%s",tmp); if(tmp[j] == 'b'){ count++; } } } if(count % 2 == 0){ if(str[0] == 'y'){ printf("oda"); }else{ printf("yukiko"); } }else{ printf("%s",str); } }