#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, K; cin >> N >> K; if (N < K || (N == 2 && K == 0)) { cout << "Won" << '\n'; } else if (N == K) { cout << "Drew" << '\n'; } else { cout << "Lost" << '\n'; } return 0; }