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