100 atcoder#ABC152D. [ABC152D] Handstand 2

[ABC152D] Handstand 2

Score : 400400 points

Problem Statement

Given is a positive integer NN. Find the number of pairs (A,B)(A, B) of positive integers not greater than NN that satisfy the following condition:

  • When AA and BB are written in base ten without leading zeros, the last digit of AA is equal to the first digit of BB, and the first digit of AA is equal to the last digit of BB.

Constraints

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.

25
17

The following 1717 pairs satisfy the condition: (1,1)(1,1), (1,11)(1,11), (2,2)(2,2), (2,22)(2,22), (3,3)(3,3), (4,4)(4,4), (5,5)(5,5), (6,6)(6,6), (7,7)(7,7), (8,8)(8,8), (9,9)(9,9), (11,1)(11,1), (11,11)(11,11), (12,21)(12,21), (21,12)(21,12), (22,2)(22,2), and (22,22)(22,22).

1
1
100
108
2020
40812
200000
400000008