#include using namespace std; int main() { int n, k; cin >> n >> k; if(n == k) cout << "Drew" << endl; else if(n == 0) { if(k == 1) cout << "Won" << endl; else cout << "Lost" << endl; } else if(n == 1) { if(k == 2) cout << "Won" << endl; else cout << "Lost" << endl; } else if(n == 2) { if(k == 0) cout << "Won" << endl; else cout << "Lost" << endl; } }