n, k = [int(x) for x in input().split()] if (n == k): print("Drew") elif ((n - k) % 3 == 1): print("Lost") else: print("Won")