A Very Big Sum

  • + 0 comments
    def aVeryBigSum(ar):
        # Write your code here
        total=0
        for i in ar:
            total+=i
        return total