I can’t figure out how the sample output is evaluated in this problem.
i.e
problem:-
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.
sample input:-
4
1 0 2 9
5
3 4 5 6 7
sample output:-
3, 5, 5, 9, 6, END