a, b = map(int, input().split()) out = None if a > b * 3.6: out = "KoD" elif a < b * 3.6: out = "blackyuki" else: out = "same" print(out)