/* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Ideone { public static void main (String[] args) throws java.lang.Exception { Scanner sc = new Scanner(System.in); int a,b; String c; a = sc.nextInt(); b = sc.nextInt(); if(a==0){ if(b==1){ c="Won"; }else if(b==2){ c="Lost"; }else{ c="Drew"; } }else if(a==1){ if(b==1){ c="Drew"; }else if(b==2){ c="Won"; }else{ c="Lost"; } }else{ if(b==1){ c="Lost"; }else if(b==2){ c="Drew"; }else{ c="Won"; } } System.out.println(c); } }