Simple Array SumEasyProblem Solving (Basic)Max Score: 10Success Rate: 94.74%Calculate the sum of integers in an array. 문제Given an array of integers, find the sum of its elements.For example, if the array , , so return .Function DescriptionComplete the function with the following parameter(s):: an array of integersReturns: the sum of the array elementsInput FormatThe first line contains an inte..