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