using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yuki { class Program { static void Main(string[] args) { string[] a = Console.ReadLine().Split(); int n = int.Parse(a[0]); int k = int.Parse(a[1]); if (k == n) { Console.WriteLine("Drew"); return; } if (n + 1 == k || (n == 2 && k == 0)) { Console.WriteLine("Won"); return; } else { Console.WriteLine("Lost"); } } } }