#include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 10;
int t, n, m, k, l, r, op, x, y,sum;
bool flag ;
void solve() {
cin >> n;
for (int i = 1; i <= n; i++) {
x = i;
flag = true;
if (x % 7 == 0)continue;
while(x){
if(x%10==7){
flag = false;
break;
}
x/=10;
}
if(flag)sum+=i*i;
}
cout<<sum;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}