#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(int i=0;i m; REP(i,8){ string s; cin >> s; m[s]++; } int x=m["AC"]+m["NoOut"]; if(x>=6) cout << "Win" << endl; else if(x==5) cout << "Draw" << endl; else cout << "Lose" << endl; return 0; }