N, K = map(int, input().split()) match (N-K) % 3: case 0: print("Drew") case 1: print("Lost") case 2: print("Won")