You are viewing a single comment's thread. Return to all comments →
def simpleArraySum(ar): return sum(ar)
if name == "main": n = int(input().strip()) ar = list(map(int, input().split())) print(simpleArraySum(ar))
Seems like cookies are disabled on this browser, please enable them to open this website
Simple Array Sum
You are viewing a single comment's thread. Return to all comments →
def simpleArraySum(ar): return sum(ar)
if name == "main": n = int(input().strip()) ar = list(map(int, input().split())) print(simpleArraySum(ar))