import java.util.Scanner;

public class Janken {
	
	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K =scan.nextInt();
	  if(N==K){
		  System.out.println("Drew");
	  }else if(K-1==-1){
		  if(N==2){
			  System.out.println("Won");
		  }else if(N==1){
			  System.out.println("Lost");
		  }
	  }else if(N-1==-1){
		  if(K==2){
			  System.out.println("Lost");
		  }else if(K==1){
			  System.out.println("Won");
		  }
	  }else if(K-1>-1){
		  if(N==K-1){
			  System.out.println("Won");
		  }else if(N==K+1){
			  System.out.println("Lost");
		  }
	  }
	}
}