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