#include <bits/stdc++.h>
#define For(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(int i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

int main() {
    int cnt = 0;
    rep(_, 8) {
        string s;
        cin >> s;
        if (s == "AC" || s == "NoOut") {
            cnt++;
        }
    }
    if (cnt >= 6) {
        cout << "Win" << endl;
    } else if (cnt == 5) {
        cout << "Draw" << endl;
    } else {
        cout << "Lose" << endl;
    }
}