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
33
34
35
#include <iostream>
#include <string>

using namespace std;

bool czy_potyczkowa(int liczba){
    string wyr = to_string(liczba);

    for(int i=0; i<wyr.length(); i++){

        if((wyr[i] - '0') == 0){
            return false;
        }
        if (liczba % (wyr[i] - '0') != 0){
            return false;
        }
    }
    return true;

}

int main(){
    long long dol, gora;
    long long licznik = 0;
    cin>>dol>>gora;

    for(int i = dol; i<=gora; i++){
        if(czy_potyczkowa(i)){
            licznik++;
        }
    }
    cout<<licznik;

    return 0;
}