#include using namespace std; int main() { int m, e; cin >> m >> e; if(m == e){ cout << "Drew" << endl; }else if(m==0 && e==1 || m==1 && e==2 || m==2 && e ==0 ){ cout << "Won" << endl; } else { cout << "Lost" << endl; } return 0; }