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