Takahashi Calendar

AtCoder
IDjsc2019_qual_a
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
15 40
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$
Input #2
12 31
Output #2
5
Input #3
1 1
Output #3
0
API Response (JSON)
{
  "problem": {
    "name": "Takahashi Calendar",
    "description": {
      "content": "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 condi",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "jsc2019_qual_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Today is August $24$, one of the five Product Days in a year.\nA 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 condi...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments