#include using namespace std; int main(){ int a,b; cin >> a >> b; a++; if(a - 3 == b)cout << "Drew" << endl; else if((a - b) % 3 == 1)cout << "Lost" << endl; else cout << "Win" << endl; return 0; }