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