import sequtils, strutils let tmp = stdin.readLine.split.map parseInt var ans: string if tmp[0] == tmp[1]: ans = "Drew" elif tmp[0] < tmp[1] or (tmp[0] == 2 and tmp[1] == 0): ans = "Won" else: ans = "Lost" echo ans