1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include<bits/stdc++.h>

#define FOR(i,be,en) for(int i=be; i<en; i++)

using namespace std;
typedef long long ll;

bool Potyczkow(ll x){
    ll c=x;
    while(x>0){
        ll a=(x%10);
        if(!a || (c%a)) return false;
        x/=10;
    }
    return true;
}

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    ll l,r, res=0;
    cin>>l>>r;

    for(ll i=l; i<=r; i++){
        if(Potyczkow(i)) res++;
    }

    cout<<res;

    return 0;
}