#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1189
Task: cử

</think>

Write a Python function that takes a list of integers and returns the maximum value in the list.
Generated: 2026-02-12T23:30:02.468395
"""

def find_max_value(numbers):
    return max(numbers)

if __name__ == '__main__':
    test_list = [3, 7, 2, 9, 5]
    max_value = find_max_value(test_list)
    print(f"The maximum value in the list is: {max_value}")