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