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