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