using System; using System.Linq; class Program { static void Main(string[] args) { int[] NK = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();; if (NK[0] == NK[1]) { Console.WriteLine("Drew"); } else if ((NK[0] == 0 && NK[1] == 1) || (NK[0] == 1 && NK[1] == 2) || (NK[0] == 2 && NK[1] == 0)) { Console.WriteLine("Won"); } else { Console.WriteLine("Lost"); } } }