Skip to content

Instantly share code, notes, and snippets.

@dhananjay-ng
Created May 6, 2018 12:24
Show Gist options
  • Save dhananjay-ng/f17784f15ac12fe9599a3c555c95bb8a to your computer and use it in GitHub Desktop.
Save dhananjay-ng/f17784f15ac12fe9599a3c555c95bb8a to your computer and use it in GitHub Desktop.
BigInteger sum=new BigInteger("0");
for(int i=0;i<n;i++){
String s=ii.readString();
sum=sum.add(new BigInteger(s));
}
System.out.println(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment