using System; using System.Linq; using System.Collections.Generic; namespace test20190423 { class Program { static void Main(string[] args) { var ss = Console.ReadLine().Split(new String[] { " " }, StringSplitOptions.RemoveEmptyEntries).Select(x => int.Parse(x)).ToArray(); var results = new String[][] { new String[] { "Drew", "Won", "Lost" }, new String[] { "Lost", "Drew", "Won" }, new String[] { "Won", "Lost", "Drew" } }; Console.WriteLine(results[ss[0]][ss[1]]); Console.ReadLine(); } } }