using System; using System.Linq; class Program { static void Main() { string[,] result = { {"Drew","Won","Lost"}, {"Lost","Drew","Won"}, {"Won","Lost","Drew"} }; int[] X = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray(); int N = X[0]; int K = X[1]; Console.WriteLine(result[N,K]); } }