using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { int[] n = new int[2]; string[] strn = Console.ReadLine().Split(' '); int N = int.Parse(strn[0]); int K = int.Parse(strn[1]); if (N == K) { Console.WriteLine("Drew"); } else if (K - N == 1) { Console.WriteLine("Won"); } else if (N - K == 1) { Console.WriteLine("Lost"); } else if (N == 2) { Console.WriteLine("Won"); } else if (N == 0) { Console.WriteLine("Lost"); } } } }