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