package 練習; import java.util.Scanner; public class main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int cnt_w=0,cnt_b=0; String str_1=sc.next(); String str_2; if(str_1.equals("oda")){ str_2="yukiko"; }else if(str_1.equals("yukiko")){ str_2="oda"; }else{ str_2=""; System.err.println("Error_at17"); } for(int i=0;i<8;i++){ String Str=sc.next(); for(int j=0;j<8;j++){ if(Str.charAt(j)=='w'){ cnt_w++; }else if(Str.charAt(j)=='b'){ cnt_b++; } } } if((cnt_w+cnt_b)%2==0){//wが先手。 System.out.println(str_1); }else if((cnt_w+cnt_b)%2==1){ System.out.println(str_2); }else{ System.out.println("Error_at36"); } } }