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