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