#include using namespace std; typedef unsigned long long ull; typedef long long ll; int main(){ int a, b; cin >> a >> b; if(a==0){ if(b==0) cout << "Drew" << endl; if(b==1) cout << "Won" << endl; if(b==2) cout << "Lost" << endl; } if(a==1){ if(b==0) cout << "Lost" << endl; if(b==1) cout << "Drew" << endl; if(b==2) cout << "Won" << endl; } if(a==2){ if(b==0) cout << "Won" << endl; if(b==1) cout << "Lost" << endl; if(b==2) cout << "Drew" << endl; } return 0; }