You are given an array of exactly 10 integers.
Write a function named get_element that provides direct access to an element of the array at a specified index.
The function will be used in main() exactly as provided.
Your implementation must satisfy all usages without modifying main().
Example
Input:
1 2 3 4 5 6 7 8 9 10
3 99Output:
1 2 3 99 5 6 7 8 9 10
Constraints:
0 ≤ index < 10main() function
Input
1 2 3 4 5 6 7 8 9 10 3 99
Expected Output
1 2 3 99 5 6 7 8 9 10