[me, you] = list(map(int, input().split())) if me == you: print("Drew") elif (me + 1) == you: print("Won") else: if me == 2: if you == 0: print("Won") else: print("Lost") else: print("Lost")