#include using namespace std; int main() { int cnt = 0; string S; for(int i = 0; i < 8; i++) { 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; } }