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==0 && K==0 || N==1 && K==1 || N==2 && K==2){ 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"); } } }