#include<bits/stdc++.h>
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    if(a==b) cout<<"Drew"<<endl;
    else if(a-b==1||a-b==-2) cout<<"Lost"<<endl;
    else cout<<"Won"<<endl;
}