A Very Big Sum

  • + 3 comments

    Here is Python 3 solution from my HackerrankPractice repository:

    n = int(input())
    ar = list(map(int, input().split()))
    print(sum(ar))
    

    Feel free to ask if you have any questions :)