**Problem Statement:**
Given a 1-indexed array of integers `numbers` that is already sorted in non-decreasing order, find two numbers such that they add up to a specific `target` number. Let these two numbers be `numbers[index1]` and `numbers[index2]`. Return the indices of the two numbers.
**Hint / Expected Approach:**
Converging two pointers
**Edge Cases to Consider:**
- (1) Only two elements
- (2) Sum found at edges
- (3) Multiple pairs summing to target