#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
bool judge(int x){
while(x){
int k=x%10;
if(k==5) return false;
x/=10;
}
return true;
}
int get(int x){
int res=0;
for(int i=2;i<=x/i;i++){
bool f=false;
if(x%i==0){
f=true;
while(x%i==0) x/=i;
}
if(f) res++;
}
if(x>1) res++; //这一句在for循环外
return res;
}
int main(){
ll res=0;
for(int i=1;i<=2020;i++){
if(judge(i)){
res+=get(i);
}
}
cout<<res<<endl;
}