using System; using System.Collections.Generic; namespace ConsoleApp1 { class Program { static void Main(string[] args) { #if LocalDebug var exStdIn = new System.IO.StreamReader("stdin.txt"); System.Console.SetIn(exStdIn); #endif var Data = Console.ReadLine().Split(' '); var Me = int.Parse(Data[0]); var You = int.Parse(Data[1]); var Result = "Won"; if(Me==You) { Result = "Drew"; } if((Me==0)&&(You==2) || (Me == 1) && (You == 0) || (Me == 2) && (You == 1)) { Result = "Lost"; } Console.WriteLine(Result); #if LocalDebug System.Console.ReadKey(); #endif } static int GetData() { return int.Parse(Console.ReadLine()); } } }