n, k = map(int, input().split()) if n == k: print("Drew") else: print("Won" if (n - k) % 3 == 2 else "Lost")