import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(), K = sc.nextInt(); if(N == K) { System.out.println("Drew"); } else if(N == 0) { if(K == 1) { System.out.println("Won"); } else if(K == 2) { System.out.println("Lost"); } } else if(N == 1) { if(K == 0) { System.out.println("Lost"); } else if(K == 2) { System.out.println("Won"); } } else if(N == 2) { if(K == 0) { System.out.println("Won"); } else if(K == 1) { System.out.println("Lost"); } } } }