N, K = [int(x) for x in input().split()] if (N == 0 and K ==1) or (N == 1 and K ==2) or (N == 2 and K ==0): print("Won") elif (N == 0 and K == 2) or (N == 1 and K == 0) or (N == 2 and K ==1): print("Lost") else: print("Drew")