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