100 #ABC214B. [ABC214B] How many?

[ABC214B] How many?

Score : 200200 points

Problem Statement

How many triples of non-negative integers (a,b,c)(a, b, c) satisfy a+b+cSa+b+c \leq S and a×b×cTa \times b \times c \leq T?

Constraints

  • 0S1000 \leq S \leq 100
  • 0T100000 \leq T \leq 10000
  • SS and TT are integers.

Input

Input is given from Standard Input in the following format:

SS TT

Output

Print the number of triples of non-negative integers (a,b,c)(a,b,c) satisfying the conditions.

1 0
4

The triples (a,b,c)(a,b,c) satisfying the conditions are (0,0,0)(0,0,0), (0,0,1)(0,0,1), (0,1,0)(0,1,0), and (1,0,0)(1,0,0) ― there are four of them.

2 5
10
10 10
213
30 100
2471