import sequtils,strutils,algorithm,math,future,macros template get*():string = stdin.readLine().strip() proc toSeq(str:string):seq[char] = result = @[];(for s in str: result &= s) let starter = get() == "oda" frames = newSeqWith(8,get().toSeq().filterIt(it!='.').len()) players = ["oda","yukiko"] if frames.sum() == 4 or frames.sum() mod 2 == 0 : echo players[1-starter.int] else: echo players[starter.int]