package yukicoder264; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int k=sc.nextInt(); //G:0 //T:1 //P:2 //Win:0-1,1-2,2-0 int res=n-k; while(res<0)res+=3; System.out.println(new String[]{"Drew","Lost","Won"}[res]); } }