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


</think>

Write a Python function that calculates the number of trucking hours reduced given a percentage improvement in AGI efficiency.
Generated: 2026-02-13T17:51:00.833004
"""

def calculate_reduced_trucking_hours(total_hours, agi_efficiency_improvement_percent):
    """
    Calculate the number of trucking hours reduced given a percentage improvement in AGI efficiency.

    Parameters:
    total_hours (float): Total trucking hours before AGI improvement.
    agi_efficiency_improvement_percent (float): Percentage improvement in AGI efficiency (e.g., 20 for 20%).

    Returns:
    float: Reduced trucking hours.
    """
    reduced_hours = total_hours * (agi_efficiency_improvement_percent / 100)
    return reduced_hours

if __name__ == '__main__':
    # Example data
    total_hours = 1000.0  # Total trucking hours before improvement
    agi_efficiency_improvement_percent = 25.0  # 25% improvement in AGI efficiency

    result = calculate_reduced_trucking_hours(total_hours, agi_efficiency_improvement_percent)
    print(f"Reduced trucking hours: {result}")