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
36
37
38
#include <cstdio>
#include <string>

using namespace std;

#define ll long long 

bool isP(int i) {
	string s = to_string(i);
	for(int j=0;j<s.length();j++) {
		if(s[j] == '0') {
			return false;
		}
		int digit = s[j] - '0';
		if((i % digit) != 0) {
			return false;
		}
	}
	return true;

}

int main(int argv, char** argc) {
	int a, b;
	int c[1234567];
	scanf("%d%d", &a, &b);

	int cnt = 0;
	for(int i=1;i<1234567;i++) {
		if(isP(i)) {
			cnt++;
		}
		c[i] = cnt;
	}

	printf("%d\n", c[b] - c[a-1]);
	return 0;
}