n, k = [int(x) for x in input().split()] res = 'Lost' if n == k: res = 'Drew' elif n == 0 and k == 1 or n == 1 and k == 2 or n == 2 and k == 0: res = 'Won' print(res)