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