diff --git a/a_very_Big_sum b/a_very_Big_sum new file mode 100644 index 0000000..bc7e073 --- /dev/null +++ b/a_very_Big_sum @@ -0,0 +1,26 @@ +#!/bin/python3 + +import math +import os +import random +import re +import sys +# Complete the aVeryBigSum function below. +def aVeryBigSum(ar): + sum = 0 + for i in range(len(ar)): + sum+=ar[i] + return sum + +if __name__ == '__main__': + fptr = open(os.environ['OUTPUT_PATH'], 'w') + + ar_count = int(input()) + + ar = list(map(int, input().rstrip().split())) + + result = aVeryBigSum(ar) + + fptr.write(str(result) + '\n') + + fptr.close()