A wqb-number, or B-number for short, is a non-negative integer whose decimal form contains the sub- string "13"and can be divided by 13. For example, 130 and 2613 are wqb-numbers, but 143 and 2639 are not. Your task is to calculate how many wqb-numbers from 1 to n for a given integer n. Input Process till EOF. In each line, there is one positive integer n(1 <= n <= 1000000000). Output Print each answer in a single line. Sample Input
13
100
200
1000
Sample Output
1
1
2
2
제목: n보다 작은 것은 13으로 나눌 수 있고 13을 포함하는 수는 몇 개입니까 용척원리 n으로 13정제할 수 없는 것을 빼고 13을 포함하지 않는 것을 빼면 중간에 많이 빼면 13도 포함하지 않고 13정제할 수 없는 수를 더하면 답이다 코드는 다음과 같습니다.