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(); String str; if (N == K) str = "Drew"; else if ((N + 1) % 3 == K) str = "Won"; else str = "Lost"; System.out.println(str); } }