#include "bits/stdc++.h" using namespace std; int main() { int N, K; cin >> N >> K; if (N == K) cout << "Drew"; else if (N % 3 == (K + 2) % 3) cout << "Won"; else cout << "Lost"; }