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