using System; using System.Linq; namespace No264 { public class Program { public static void Main(string[] args) { var hand = Console.ReadLine().Split().Select(int.Parse).ToArray(); const string won = "Won"; const string drew = "Drew"; const string lost = "Lost"; string[,] list = new string[,]{ {drew, won, lost }, {lost, drew, won }, {won, lost, drew }, }; Console.WriteLine(list[hand[0],hand[1]]); } } }