#include #define REP(i, n) for(int i = 0; i < n; i++) #define REPR(i, n) for(int i = n; i >= 0; i--) #define FOR(i, m, n) for(int i = m; i < n; i++) #define INF 2e9 #define ALL(v) v.begin(), v.end() using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); vector a(5); REP(i,5) { cin >> a[i]; } int ans = 0; REP(i, 5) { int b = a[i]; if(b % 3 == 0) ans += 4; if(b % 5 == 0) ans += 4; if(b % 3 != 0 && b % 5 != 0) ans += to_string(a[i]).size(); } cout << ans << endl; }