L=map(str,input().split()) ans=0 for l in L: if l in ["AC","NoOut"]: ans+=1 if ans>=6: print("Win") elif ans==5: print("Draw") else: print("Lose")