#include #define be(v) (v).begin(),(v).end() #define pb(q) push_back(q) #define rep(i, n) for(int i=0;i> m >> k; ll ans = m - 1; ll cnt = (m - 1) / (k + 1); ans -= cnt; if(ans & 1){ cout << "Win" << endl; }else{ if(cnt) cout << "Lose" << endl; else cout << "Draw" << endl; } return 0; }