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