let main = (standardInput) => { var point = standardInput.split(" "); var pointA = Number(point[0]); var pointB = Number(point[1]); if (pointA == pointB) { console.log("Drew"); } else if ((pointA === 0 && pointB === 1) || (pointA === 1 && pointB === 2) || (pointA === 2 && pointB === 0)){ console.log("Won"); } else { console.log("Drew"); } }; main(require('fs').readFileSync('/dev/stdin', 'UTF-8'));