first = input() split_first = first.split() me = int(split_first[0]) you = int(split_first[1]) if me == you: print("Drew") elif me == 0: if you == 1: print("Won") else: print("Lost") elif me == 1: if you == 2: print("Won") else: print("Lost") else: if you == 1: print("Won") else: print("Lost")