a, b = map(int, input().split()) ans = "Lost" if b == a : ans = "Drew" elif b == (a+1) % 3 : ans = "Won" print(ans)