N, K = map(int, input().split()) rsp = [0,1,-1] if N == K: print("Drew") else: if K == rsp[N] + 1: print("Won") else: print("Lost")