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