#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int ans = 0; for (int i = 0; i < 5; i++) { int temp; cin >> temp; if (temp % 15 == 0) { ans += 8; } else if (temp % 5 == 0 || temp % 3 == 0) { ans += 4; } else { string a = to_string(temp); ans += a.length(); } } cout << ans << endl; return 0; }