#D874. DivRem Number

    ID: 727 Type: Default 2000ms 1073MiB

DivRem Number

DivRem Number

Snuke received a positive integer N from Takahashi. A positive integer m is called a favorite number when the following condition is satisfied:

  • The quotient and remainder of N divided by m are equal, that is, \lfloor \frac{N}{m} \rfloor = N \bmod m holds.

Find all favorite numbers and print the sum of those.

Constraints

  • All values in input are integers.
  • 1 \leq N \leq 10^{12}

Input

Input is given from Standard Input in the following format:

N

Output

Print the answer.

Examples

Input

8

Output

10

Input

1000000000000

Output

2499686339916

inputFormat

input are integers.

  • 1 \leq N \leq 10^{12}

Input

Input is given from Standard Input in the following format:

N

outputFormat

Output

Print the answer.

Examples

Input

8

Output

10

Input

1000000000000

Output

2499686339916

样例

8
10