#include #include #include using namespace std; #define FOR(i, a, n) for (int i = a; i < n; i++) #define REP(i, n) for(int i = 0; i < n; i++) struct omt{omt(){ios::sync_with_stdio(false);cin.tie(0);}}star; int getDigit(int x){ return to_string(x).size(); } int main(){ int tmp, cnt = 0; REP(i, 5){ cin >> tmp; if(tmp % 3 == 0) cnt += 4; if(tmp % 5 == 0) cnt += 4; if(tmp % 3 != 0 and tmp % 5 != 0) cnt += getDigit(tmp); } cout << cnt << endl; return 0; }