#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1194
Task: , and the user's message is as follows: 

</think>

Write a Python function that takes a list of integers and returns the highest-value action based on the sum of the top three integers.
Generated: 2026-02-12T23:36:40.273785
"""

def highest_value_action(numbers):
    # Sort the list in descending order
    sorted_numbers = sorted(numbers, reverse=True)
    # Take the top three numbers
    top_three = sorted_numbers[:3]
    # Sum the top three
    total = sum(top_three)
    return total

if __name__ == '__main__':
    test_data = [10, 5, 8, 12, 3, 7, 15]
    result = highest_value_action(test_data)
    print(f"The highest-value action based on the sum of the top three integers is: {result}")