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