A Very Big Sum

  • + 0 comments

    For Python3 Platform

    I wrote the code from scratch just to get more practice

    def aVeryBigSum(ar):
        return sum(ar)
    
    n = int(input())
    ar = list(map(int, input().split()))
    
    res = aVeryBigSum(ar)
    
    print(res)