def judge_outcome(ac_noout_counts): if 6 <= ac_noout_counts: return print("Win") elif 5 == ac_noout_counts: return print("Draw") else: return print("Lose") def main(): judgment_results = list(input().split()) ac_count = judgment_results.count("AC") noout_count = judgment_results.count("NoOut") ac_noout_counts = ac_count + noout_count judge_outcome(ac_noout_counts) if __name__ == "__main__": main()