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