def main(): the_number_of_right_answers() def the_number_of_right_answers(): s = input() correct = s.count('AC') + s.count('NoOut') if correct >= 6: print('Win') elif correct == 5: print('Draw') else: print('Lose') if __name__ == '__main__': main()