#include using namespace std; int main() { int n, dame, max; cin >> n; for (int i = 0; i < n; i++){ cin >> dame >> max; if ((dame - 1) % (max + 1) < max){ cout << "Lose"<< endl; } else cout << "Win" << endl; } }