using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace template { class Program { static void Main(string[] args) { int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); if (x[0] == x[1]) Console.WriteLine("Drew"); else if (x[1] - x[0] == 1 || x[0] - x[1] == 2) Console.WriteLine("Won"); else Console.WriteLine("Lost"); } } }