using System; using System.Collections.Generic; using System.Linq; class Program { static string InputPattern = "Input4"; static List GetInputList() { var WillReturn = new List(); if (InputPattern == "Input1") { WillReturn.Add("0 0"); //Drew //自分はぐー(0)、相手もぐー(0)、よって、あいこ(Drew) } else if (InputPattern == "Input2") { WillReturn.Add("2 0"); //Won //自分はぱー(2)、相手はぐー(0)、よって、勝ち(Won) } else if (InputPattern == "Input3") { WillReturn.Add("2 1"); //Lost //自分はぱー(2)、相手はちょき(1)、よって、負け(Lost) } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List InputList = GetInputList(); int[] wkArr = InputList[0].Split(' ').Select(X => int.Parse(X)).ToArray(); int N = wkArr[0]; int K = wkArr[1]; string Result = ""; if (N == K) Result = "Drew"; if (N == 0 && K == 1) Result = "Won"; if (N == 0 && K == 2) Result = "Lost"; if (N == 1 && K == 0) Result = "Lost"; if (N == 1 && K == 2) Result = "Won"; if (N == 2 && K == 0) Result = "Won"; if (N == 2 && K == 1) Result = "Lost"; Console.WriteLine(Result); } }