#1288
Unrated
Savrsen
시간 제한
3s
메모리 제한
128MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

A number is perfect if it is equal to the sum of its divisors, the ones that are smaller than it. For example, number 28 is perfect because 28 = 1 + 2 + 4 + 7 + 14. Motivated by this definition, we introduce the metric of imperfection of number N, denoted with f(N), as the absolute difference between N and the sum of its divisors less than N. It follows that perfect numbers’ imperfection score is 0, and the rest of natural numbers have a higher imperfection score. For example: ● f(6) = |6 - 1 - 2 - 3| = 0, ● f(11) = |11 - 1| = 10, ● f(24) = |24 - 1 - 2 - 3 - 4 - 6 - 8 - 12| = |-12| = 12. Write a programme that, for positive integers A and B, calculates the sum of imperfections of all numbers between A and B: f(A) + f(A + 1) +... + f(B).

입력

The first line of input contains the positive integers A and B (1 ≤ A ≤ B ≤ 10710^{7}).

출력

The first and only line of output must contain the required sum.

예제 입력 1

1 9

예제 출력 1

21

예제 입력 2

24 24

예제 출력 2

12
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.