using System; public class Hello{ public static void Main(){ // Here your code ! string s = Console.ReadLine(); string[] input = s.Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); string answer = ""; if(b - a == 0) { answer = "Drew"; } else if((a - b + 3) % 3 == 1) { answer = "Lost"; } else { answer = "Won"; } Console.WriteLine(answer); } }