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