using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YukiCoder { class Program { static void Main(string[] args) { var s = Console.ReadLine(); if (s == "0 0") Console.WriteLine("Drew"); if (s == "0 1") Console.WriteLine("Won"); if (s == "0 2") Console.WriteLine("Lost"); if (s == "1 0") Console.WriteLine("Lost"); if (s == "1 1") Console.WriteLine("Drew"); if (s == "1 2") Console.WriteLine("Won"); if (s == "2 0") Console.WriteLine("Won"); if (s == "2 1") Console.WriteLine("Lost"); if (s == "2 2") Console.WriteLine("Drew"); //Console.ReadLine(); } } }