import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Main { // コマの数 は ターン数 + 4 で不変な条件なので, これを利用する. public static void main(String[] args){ Scanner sc = new Scanner(System.in); final String fst_name = sc.next(); final String snd_name = "oda".equals(fst_name) ? "yukiko" : "oda"; int count = 0; while(sc.hasNext()){ for(char c : sc.next().toCharArray()){ count += c != '.' ? 1 : 0; } } System.out.println(count % 2 == 0 ? fst_name : snd_name); } }