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