

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 200 点
問題文
今日は 8 月 24 日、年に 5 日しかない積の日です。
d が 2 桁の整数で、d の 1 の位を d_1、10 の位を d_{10} としたときに m, d_1, d_{10} が次の条件をすべて満たす場合、m 月 d 日を積の日と呼びます。
- d_1 \geq 2
- d_{10} \geq 2
- d_1 \times d_{10} = m
高橋くんはこの日をもっと増やしたいと考え、1 年が 1 月から M 月までの合計 M ヶ月、どの月も 1 日から D 日までの合計 D 日からなる高橋暦を誕生させました。
高橋暦において、積の日は年に何日あるでしょうか。
制約
- 入力は全て整数である。
- 1 \leq M \leq 100
- 1 \leq D \leq 99
入力
入力は以下の形式で標準入力から与えられる。
M D
出力
高橋暦において積の日が 1 年のうちに訪れる回数を出力せよ。
入力例 1
15 40
出力例 1
10
年に訪れる積の日は次の 10 日です。
- 4 月 22 日
- 6 月 23 日
- 6 月 32 日
- 8 月 24 日
- 9 月 33 日
- 10 月 25 日
- 12 月 26 日
- 12 月 34 日
- 14 月 27 日
- 15 月 35 日
入力例 2
12 31
出力例 2
5
入力例 3
1 1
出力例 3
0
Score : 200 points
Problem Statement
Today is August 24, one of the five Product Days in a year.
A date m-d (m is the month, d is the date) is called a Product Day when d is a two-digit number, and all of the following conditions are satisfied (here d_{10} is the tens digit of the day and d_1 is the ones digit of the day):
- d_1 \geq 2
- d_{10} \geq 2
- d_1 \times d_{10} = m
Takahashi wants more Product Days, and he made a new calendar called Takahashi Calendar where a year consists of M month from Month 1 to Month M, and each month consists of D days from Day 1 to Day D.
In Takahashi Calendar, how many Product Days does a year have?
Constraints
- All values in input are integers.
- 1 \leq M \leq 100
- 1 \leq D \leq 99
Input
Input is given from Standard Input in the following format:
M D
Output
Print the number of Product Days in a year in Takahashi Calender.
Sample Input 1
15 40
Sample Output 1
10
There are 10 Product Days in a year, as follows (m-d denotes Month m, Day d):
- 4-22
- 6-23
- 6-32
- 8-24
- 9-33
- 10-25
- 12-26
- 12-34
- 14-27
- 15-35
Sample Input 2
12 31
Sample Output 2
5
Sample Input 3
1 1
Sample Output 3
0