n = ['oda', 'yukiko'] s = raw_input() b = [raw_input() for _ in range(8)] p = 0 if s == 'oda' else 1 for t in b: for c in t: if c != '.': p += 1 print n[p%2]