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