first = input() split_first = first.split( ) N = int(split_first[0]) K = int(split_first[1]) #-----機能部分----- if (N-K)%3 == 0 : print("Drew") elif (N-K)%3 == 1 : print("Lost") else: print("Won")