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