A = input() A_split = A.split() A = [int(A_split[0]), int(A_split[1])] if A[0] == A[1]: print("Drew") elif A[0] == 0: if A[1] == 1: print("Won") else: print("Lost") elif A[0] == 1: if A[1] == 2: print("Won") else: print("Lost") else: if A[1] == 0: print("Won") else: print("Lost")