class Solution {public: vector<int> twoSum(vector<int>& numbers, int target) { int i=0,j=numbers.size()-1; while(i<