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