#include using namespace std; int main() { int A,B; cin >> A >> B; vector C(3); C[0] = 1; C[1] = 2; C[2] = 0; if(A==B) { cout << "Drew" << endl; }else if(C[A]==B) { cout << "Won" << endl; }else { cout << "Lost" << endl; } }