create two array of same 'a' and 'b' of same length. Add element wise addition of two array, like first elemnt from a will be add to first element from array b. Do this using for loop.
Hint Create array c of same length as a and b, inintialize it to 0. Iterate over a and b and indexed element of array a and b and add result two number in array c.
-----------------
thank you