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