using System; class Program { static void Main(string[] args) { string s = Console.ReadLine(); string[] t = s.Split(' '); int a, b; a = int.Parse(t[0]); b = int.Parse(t[1]); if (b - a > 0) { Console.WriteLine("Won"); } else if (a - b == 0) { Console.WriteLine("Drew"); } else { Console.WriteLine("Lost"); } } }