#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)%3 == 2) cout << "Won"; else cout << "Lost"; cout << endl; }