# 2016.2.14 def calc(mine, yours): if mine == yours: return "Drew" elif mine == 0 and yours == 1: return "Won" elif mine == 1 and yours == 2: return "Won" elif mine == 2 and yours == 0: return "Won" else: return "Lost" N, K = map(int, raw_input().split()) print calc(N, K)