S = list(input().split()) count = 0 for s in S: if s == "AC" or s == "NoOut": count += 1 if count >= 6: print("Win") elif count == 5: print("Draw") else: print("Lose")