#arc107b. [arc107_b]Quadruple

[arc107_b]Quadruple

Problem Statement

Given are integers NN and KK. How many quadruples of integers (a,b,c,d)(a,b,c,d) satisfy both of the following conditions?

  • 1leqa,b,c,dleqN1 \\leq a,b,c,d \\leq N
  • a+bcd=Ka+b-c-d=K

Constraints

  • 1leqNleq1051 \\leq N \\leq 10^5
  • \-2(N1)leqKleq2(N1)\-2(N-1) \\leq K \\leq 2(N-1)
  • All numbers in input are integers.

Input

Input is given from standard input in the following format:

NN KK

Output

Print the answer.


Sample Input 1

2 1

Sample Output 1

4

Four quadruples below satisfy the conditions:

  • (a,b,c,d)=(2,1,1,1)(a,b,c,d)=(2,1,1,1)
  • (a,b,c,d)=(1,2,1,1)(a,b,c,d)=(1,2,1,1)
  • (a,b,c,d)=(2,2,2,1)(a,b,c,d)=(2,2,2,1)
  • (a,b,c,d)=(2,2,1,2)(a,b,c,d)=(2,2,1,2)

Sample Input 2

2525 -425

Sample Output 2

10314607400