using System; public class Program { static void Main() { int[] hand = Array.ConvertAll(Console.ReadLine().Split(' '), s => int.Parse(s)); switch ((hand[0] - hand[1] + 3) % 3) { case 0: Console.WriteLine("Drew"); break; case 1: Console.WriteLine("Lost"); break; case 2: Console.WriteLine("Won"); break; } } }