#include #define rep(i, n) for (int i = 0; i < n; ++i) using ll = long long; using namespace std; const int INF = 1e9; const int MOD = INF + 7; int main() { int a, b; cin >> a >> b; int ans = (a - b + 3) % 3; if (ans == 0) cout << "Drew"; else if (ans == 2) cout << "Won"; else cout << "Lost"; cout << endl; return 0; }