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