#ABC152D. Handstand 2
Handstand 2
题目描述
Given is a positive integer .
Find the number of pairs of positive integers not greater than that satisfy the following condition:
- When and are written in base ten without leading zeros, the last digit of is equal to the first digit of , and the first digit of is equal to the last digit of .
给定正整数 。
求满足以下条件的不大于 的正整数对 的个数:
- 当把 和 写成不含前导零的十进制数时, 的末位数字等于 的首位数字,而 的首位数字等于 的末位数字。
输入格式
输入内容按以下格式标准输入:
输出格式
打印答案。
样例 #1
样例输入 #1
25
样例输出 #1
17
样例 #2
样例输入 #2
1
样例输出 #2
1
样例 #3
样例输入 #3
100
样例输出 #3
108
样例 #4
样例输入 #4
2020
样例输出 #4
40812
样例 #5
样例输入 #5
200000
样例输出 #5
400000008
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
以下 对满足条件: 、 、 、 、 、 、 、 、 、 、 、 、 、 、 、 和 。