问题1247--Sum Problem(II)

1247: Sum Problem(II)

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + ... + n.

输入

The input will consist of a series of integers n, one integer per line.

输出

For each case, output SUM(n) in one line.Between 2 cases you should print a blank line. You may assume the result will be in the range of 32-bit signed integer.

样例输入 Copy

1
100

样例输出 Copy

1

5050

来源/分类