class Solution { public int[] twoSum(int[] numbers, int target) { int[] res = new int[2]; for(int i=1;i<=numbers.length;i++){ for(int j=i+1;j