#arc091b. [arc091_b]Remainder Reminder

[arc091_b]Remainder Reminder

Problem Statement

Takahashi had a pair of two positive integers not exceeding NN, (a,b)(a,b), which he has forgotten. He remembers that the remainder of aa divided by bb was greater than or equal to KK. Find the number of possible pairs that he may have had.

Constraints

  • 1leqNleq1051 \\leq N \\leq 10^5
  • 0leqKleqN10 \\leq K \\leq N-1
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

NN KK

Output

Print the number of possible pairs that he may have had.


Sample Input 1

5 2

Sample Output 1

7

There are seven possible pairs: (2,3),(5,3),(2,4),(3,4),(2,5),(3,5)(2,3),(5,3),(2,4),(3,4),(2,5),(3,5) and (4,5)(4,5).


Sample Input 2

10 0

Sample Output 2

100

Sample Input 3

31415 9265

Sample Output 3

287927211