/* -*- coding: utf-8 -*- * * 2960.cc: No.2960 Judgement - yukicoder */ #include #include using namespace std; /* constant */ const int N = 8; /* main */ int main() { int win = 0; for (int i = 0; i < N; i++) { char s[16]; scanf("%s", s); if (s[0] == 'A' || s[2] == 'O') win++; } if (win >= 6) puts("Win"); else if (win == 5) puts("Draw"); else puts("Lose"); return 0; }