import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); final int K = sc.nextInt(); if(N == K){ System.out.println("Drew"); }else if((N + 1) % 3 == K){ System.out.println("Won"); }else{ System.out.println("Lost"); } } }