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