s = input().split() a = s.count("AC") b = s.count("NoOut") if a + b >= 6: print("Win") elif a + b <= 4: print("Lose") else: print("Draw")