I can’t understand what the question wants to say
should add both arrays
Take as input N, the size of array. Take N more inputs and store that in an array. Take as input M, the size of second array and take M more inputs and store that in second array. Write a function that returns the sum of two arrays. Print the value returned.
INPUT
4
1 0 2 9
5
3 4 5 6 7
OUTPUT
3, 5, 5, 9, 6, END
Please tell me what does this question want to ask