import java.io.BufferedReader; import java.io.InputStreamReader; public class No264 { public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader( System.in)); int[] a = strToIntArray(br.readLine()); int N = a[0]; int K = a[1]; String ans = ""; if (N == K) { ans = "Drew"; } else { if (N == 0) { // グー if (K == 1) { ans = "Won"; } else { ans = "Lost"; } } else if (N == 1) { // チョキ if (K == 2) { ans = "Won"; } else { ans = "Lost"; } } else if (N == 2) { // パー if (K == 0) { ans = "Won"; } else { ans = "Lost"; } } } System.out.println(ans); } catch (Exception e) { e.printStackTrace(); System.err.println("Error:" + e.getMessage()); } } static int[] strToIntArray(String S) { String[] strArray = S.split(" "); int[] intArray = new int[strArray.length]; for (int i = 0; i < strArray.length; i++) { intArray[i] = Integer.parseInt(strArray[i]); } return intArray; } }