#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1212
Task: ,

Write a Python function that takes a list of integers and returns the three highest values in descending order.
Generated: 2026-02-13T00:22:18.595686
"""

def get_top_three_descending(numbers):
    sorted_numbers = sorted(numbers, reverse=True)
    return sorted_numbers[:3]

if __name__ == '__main__':
    test_data = [10, 5, 8, 15, 3, 20, 2]
    result = get_top_three_descending(test_data)
    print(result)