#include void solve() { int n, k; std::cin >> n >> k; std::cout << ((n - 1) % (k + 1) == 0 ? "Lose" : "Win") << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int q; std::cin >> q; while (q--) solve(); return 0; }