import sequtils,strutils var n,k : int (n,k) = stdin.readLine.split.map parseInt var s = case n-k of 0: "Drew" of 1,-2: "Lost" else: "Won" echo s