N, K = [int(i) for i in input().split()] if N == K: print("Drew") elif (N+1) % 3 == K: print("Won") else: print("Lost")