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