#include using namespace std; const int MAX = 1000000000; int main() { int M, K; cin >> M >> K; assert(2 <= M and M <= MAX); assert(2 <= K and K <= MAX); // (N - 1) % (K + 1) == 0 int make = (M - 1) / (K + 1); int kati = M - 1 - make; int latte = (kati + 1) / 2; int malta = kati - latte; if(latte > malta) latte += make; else malta += make; if(latte > malta) cout << "Win\n"; else if(latte == malta) cout << "Draw\n"; else cout << "Lose\n"; }