N,K = map(int,input().split()) if N == K: print("Drew") elif (N-K==-2) or (N-K==-3) or (N-K==5): print("Win") else: print("Lose")