1754: 求1+3+5+...+n

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:58 Solved:37

Description

输入整数n,求1+3+5+...+n之和


Input

输入一行,只有一个整数n (1<=n<=9999) 这里n为奇数。

Output

输出只有一行,输出累加和

Sample Input Copy

99

Sample Output Copy

2500

Source/Category