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