#include "bits/stdc++.h" using namespace std; #define REP(i, n) for(int i=0; i<(n); i++) int N,K; signed main() { cin >> N >> K; if (N == K) { cout << "Drew" << endl; return 0; } if (N == (2 + K) % 3) { cout << "Won" << endl; return 0; } cout << "Lost" << endl; return 0; }