#include using namespace std; typedef long long ll; typedef string str; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); str s; ll countt = 0; for (ll i = 0; i < 8; i++) { cin >> s; if (s == "AC" || s == "NoOut") countt++; } if (countt >= 6) cout << "Win\n"; else if (countt == 5) cout << "Draw\n"; else cout << "Lose\n"; return 0; }