#include using namespace std; int main() { int n, c = 0; while (cin >> n) { //cout << n << endl; if (!(n % 3) && !(n % 5)) { c += 8; } else if (!(n % 3) || !(n % 5)) { c += 4; } else { if (n < 10) { c++; } else if (n < 100) { c += 2; } else { c += 3; } } } cout << c << endl; }