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