def result(n, k): if n == k: return "Drew" if (n+1)%3 == k: return "Won" return "Lost" N, K = map(int, input().split()) print(result(N, K))