#include using namespace std; int main(){ int N,K; cin >> N >> K; if(N == K){ cout << "DREW" << endl; } else if (N == 0 && K == 2){ cout << "LOST" << endl; } else if(N == 2 && K == 0){ cout << "WON" << endl; } else if(N > K){ cout << "LOST" << endl; } else{ cout << "WON" << endl; } }