dado 2 vectores con números enteros crear un tercer vector con la suma de los valores anteriores
public static int[] SumaVectores(int[] v1, int [] v2) { int[] v3 = new int[v1.Length]; for (int i=0; i < v1.Length; i++){ v3[i] = v1[i] + v2[i]; } return v3; }