using System; using System.Linq; class Program { static void Main() { /// 0: グー,1:チョキ,2:パー /// 0 0 Drew /// 0 1 Won /// 0 2 lost /// 1 0 lost /// 1 1 Drew /// 1 2 Won /// 2 0 Won /// 2 1 lost /// 2 2 Drew var l = Console.ReadLine().Split().Select(int.Parse).ToArray(); if (l[0] == 0 && l[1] == 2) { Console.WriteLine("Lost"); } else if (l[0] == 2 && l[1] == 0) { Console.WriteLine("Won"); } else if (l[0] < l[1]) { Console.WriteLine("Won"); } else if (l[0] > l[1]) { Console.WriteLine("Lost"); } else { Console.WriteLine("Drew"); } } }