#include using namespace std; int main() { int n = 8; int cnt = 0; for (int i = 0; i < n; i++) { string s; cin >> s; if (s == "AC" || s == "NoOut") cnt++; } if (6 <= cnt) cout << "Win" << endl; else if (5 == cnt) cout << "Draw" << endl; else cout << "Lose" << endl; return 0; }