import java.util.Scanner; public class No264 { public static void main(String[]args) { Scanner sc = new Scanner(System.in); int n,k; do { n=sc.nextInt(); }while(n<0 || n>2); do { k=sc.nextInt(); }while(k<0 || k>2); if(n==k) { System.out.println("Drew"); } else if(n==k-1 | (n==2&&k==0)) { System.out.println("Won"); } else { System.out.println("Lost"); } } }