Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #141 from art-rauniyar/patch-1
Browse files Browse the repository at this point in the history
Update A_very_big_sum.cs
  • Loading branch information
thekavikumar authored Oct 30, 2022
2 parents d014190 + c10dc32 commit 50773b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C#/A_very_big_sum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ static void Main()
long sum=0;

for(int i=0; i<n; i++){
arr[i] = Convert.ToInt32(Console.ReadLine());
arr[i] = Convert.ToInt64(Console.ReadLine());
sum+=arr[i];
}

Expand Down

0 comments on commit 50773b7

Please sign in to comment.