You are viewing a single comment's thread. Return to all comments →
def aVeryBigSum(ar): return sum(ar) n = int(input()) ar = list(map(int, input().split())) res = aVeryBigSum(ar) print(res)
Seems like cookies are disabled on this browser, please enable them to open this website
A Very Big Sum
You are viewing a single comment's thread. Return to all comments →
For Python3 Platform
I wrote the code from scratch just to get more practice