#include using namespace std; int main(int argc, char** argv) { int N, K = 0; 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 (K == 0) cout << "Won" << endl; else cout << "Lost" << endl; } return 0; }