n,k = input().split(" ") a = int(n) - int(k) if a == 0: print("Drew") elif a == -1 or a == 2: print("Won") else: print("Lost")