import java.util.Scanner; public class Janken { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); String result; if (a == b) { result = "Drew"; } else if (a + 1 == b || a - 2 == b) { result = "Won"; } else { result = "Lost"; } System.out.println(result); sc.close(); } }