#include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ int N,K; cin >> N >> K; if((N-1)%(K+1)) cout << "Win\n"; else cout << "Lose\n"; } }