S = list(input().split()) c = S.count("AC") + S.count("NoOut") print("Win" if c >= 6 else ("Draw" if c == 5 else "Lose"))