1226: 求和

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:182 Solved:87

Description

给定一个正整数 $n$,计算出 $4$ 到 $n$ 之间(包含 $4$ 和 $n$)所有合数的和。

Input

一行,包含一个正整数 $n$。

Output

输出所有合数的和。

Sample Input Copy

7

Sample Output Copy

10

HINT

数据范围:

$5\le n \le 100$。

Source/Category