import std.stdio, std.conv, std.string, std.range, std.math, std.bigint, std.algorithm; void main() { auto input = readln.split.to!(int[]); auto N = input[0], K = input[1]; ((N - K + 3) % 3).predSwitch(0, "Drew", 2, "Won", "Lost").writeln; }