module main; import std; // https://okwave.jp/qa/q1118.html より void main() { // 入力 int P = readln.chomp.to!int; // 各ゲームの処理 foreach (_; 0 .. P) { int N, K; readln.chomp.formattedRead("%d %d", N, K); if (N <= K) { writeln("Win"); } else writeln((N - 1) % (K + 1) == 0 ? "Lose" : "Win"); } }