/* eslint no-console: "off" */ function div_ceil(a, b) { return Math.trunc(a/b) + ((((a<0)^(b>0)) && a%b) ? 1 : 0); } function div_floor(a, b) { return Math.trunc(a/b) + ((((a>0)^(b>0)) && a%b) ? 1 : 0); } const RESULT = [ [ 0, 1, -1 ], [ -1, 0, 1 ], [ 1, -1, 0 ] ]; const STR = [ "Lost", "Drew", "Won" ]; function Main(input) { let [N, K] = input.split(" ").map(s => parseInt(s.trim())); let ans = STR[RESULT[N][K] + 1]; console.log(ans); } Main(require("fs").readFileSync("/dev/stdin", "utf8"));