N,K = map(int,input().split()) if (N+1)%3 == K: print("Won") elif N == K: print("Drew") else: print("Lost")