#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1254
Task: </think>

Write a Python function that takes a list of integers and returns the highest-value integer along with its index in the list.
Generated: 2026-02-13T01:57:11.033400
"""

def find_max_with_index(numbers):
    max_value = max(numbers)
    index = numbers.index(max_value)
    return max_value, index

if __name__ == '__main__':
    test_list = [10, 20, 5, 30, 15]
    max_value, index = find_max_with_index(test_list)
    print(f"Maximum value: {max_value}, Index: {index}")