A = [int(i) for i in input().split()] B = (A[0] - A[1])%3 if B == 2: print("Won") elif B == 1: print("Lost") else: print("Drew")