Hey, welcome to HDOJ(Hangzhou Dianzi University Online Judge).
In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + ... + n.
Input
The input will consist of a series of integers n, one integer per line.
Output
For each case, output SUM(n) in one line, followed by a blank line. You may assume the result will be in the range of 32-bit signed integer.
code
import java.util.Scanner;publicclassMain{publicstaticvoidmain(String[] args){int a;
Scanner in =newScanner(System.in);while(in.hasNext()){int b =0;
a = in.nextInt();for(int i =0; i < a+1; i++){
b += i;}
System.out.println(b);
System.out.println();}}}