#include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) typedef long long ll; int main() { int N, K; cin >> N >> K; if(N==K){ cout << "Drew" << endl; return 0; } if(N+1 == K or N - 2 == K){ cout << "Won" << endl; } else { cout << "Lost" << endl; } }