Problem A: 求和:求 1 + 2 + 3 + .... + n的和.
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:9228
Solved:7398
Description
编写一个函数用于求 1 + 2 + 3 + .... + n的和.
Input
一个整数n.
Output
输出1到n的和.输出就一个整数,不需要多余的字符,不需要换行.
Sample Input Copy
5
Sample Output Copy
15