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