n, k = map(int, input().split()) r = (n - k) % 3 L = ["Drew", "Lost", "Won"] print(L[r])