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