#include using namespace std; const int MAX_SIZE = 1e9; int N,K; int main(){ cin >> N>> K; if(N==K) cout << "Drew"; else if((N-K) == -1 || (N-K)==2) cout << "Won"; else cout << "Lost"; cout << endl; }