#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; } }