n = int(input()) for i in range(n): n, k = map(int, input().split()) print("Lose" if n % (k + 1) == 1 else "Win")