#include<bits/stdc++.h>
using namespace std;

int main() {
    std::ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);  
    int n, x;
    cin >> n >> x;
    int cnt = 0;
    for (int i = 1; i <= n; i++) {
        string s = to_string(i);
        int l = s.length();
        for (int j = 0; j < l; j++) {
            if (s[j] == ('0' + x))
                cnt++;
        }
    }
    cout << cnt;
    return 0;
}