def d(N,K,r): return (N-K)%r N,K=map(int,input().split()) if d(N,K,3)==0: print("Drew") elif d(N,K,3)==1: print("Lost") else: print("Won")