using System; using System.Linq; namespace prob264 { class Program { static void Main(string[] args) { string s = ""; int[] a = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); if (a[0] == a[1]) { s = "Drew"; } else if ((a[0] + 1) % 3 == a[1]) { s = "Won"; } else { s = "Lost"; } Console.WriteLine(s); } } }