public static long aVeryBigSum(List<long> ar) { long sum=0; for(int i=0;i<ar.Count();i++){ sum=sum+ar[i]; } return sum; }