using System; using System.Collections.Generic; using System.Linq; class Program { static string ReadLine() { return Console.ReadLine().Trim(); } static void Main() { int score = 0; string[] vs = ReadLine().Split(); foreach (string s in vs) { if (s == "AC" || s == "NoOut") score++; } if (score >= 6) Console.WriteLine("Win"); else if (score == 5) Console.WriteLine("Draw"); else Console.WriteLine("Lose"); } }