using System; using System.Collections.Generic; using System.Linq; namespace y { class a { static void Main(string[] args) { string[] s = Console.ReadLine().Split(); int a = int.Parse(s[0]); int b = int.Parse(s[1]); string ans = ""; if (a > b) { ans = "KoD"; } else if (a < b) { ans = "blackyuki"; } else { ans = "same"; } Console.WriteLine(ans); } } }