function Main (input) { var line = input.split(' '); var N = +line[0]; var K = +line[1]; game(N,K); } function game (N,K) { if ( N == K) { console.log("Drew"); } else if ( N == K + 1 || N - K == 2){ console.log("Won"); } else { console.log("Lost"); } } Main(require("fs").readFileSync("/dev/stdin") , "utf-8");