using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]);//自分 int b = int.Parse(str[1]);//相手 if (a == b) { Console.WriteLine("Drew"); } else if (a == 2 && b == 0 || a == 1 && b == 2 || a == 0&&b==1) { Console.WriteLine("Won"); } else { Console.WriteLine("Lost"); } } } }