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