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