Home

A Very Big Sum

Detailed explanation coming soon!

import java.util.*;

public class Solution {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        long sum = 0;
        for(int i = 0; i < n; i++){
            sum += in.nextLong();
        }
        System.out.println(sum);
    }
}


Questions? Have a neat solution? Comment below!