"use strict"; function Main(input) { let MyHand; let OtHand; [MyHand, OtHand] = input.split(" ").map(i => Number(i)); if (MyHand === OtHand) { console.log("Drew"); } else { if (MyHand === 0) { if (OtHand === 1) { console.log("Won"); } else { console.log("Lost"); } } else if (MyHand === 1) { if (OtHand === 2) { console.log("Won"); } else { console.log("Lost"); } } else if (MyHand === 2) { if (OtHand === 0) { console.log("Won"); } else { console.log("Lost"); } } } } //テストの入力を受け取る Main(require("fs").readFileSync("/dev/stdin", "utf8")); //# sourceMappingURL=index.js.map