시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB67413662.069%

문제

Byteman has a collection of n squares with side 1. How many different rectangles can he form using these squares?

Two rectangles are considered different if none of them can be rotated and moved to obtain the second one. During rectangle construction, Byteman can neither deform the squares nor put any squares upon any other ones.

입력

The first and only line of the standard input contains one integer n (1 ≤ n ≤ 1,000,000,000).

출력

The first and only line of the standard output should contain a single integer equal to the number of different rectangles that Byteman can form using his squares.

예제 입력 1

6

예제 출력 1

8

힌트