1075 - 计算1到n的和
Time Limit : 1000 秒
Memory Limit : 128 MB
利用for循环,计算输出1+2+…+n的和
Input
一个整数n
Output
1+2+…+n的和
Examples
Input
100
Output
5050