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