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