#include using namespace std; int main() { int ret = 0; for(int i = 0; i < 5; i++) { int x; cin >> x; if(x % 15 == 0) ret += 8; else if(x % 3 == 0 || x % 5 == 0) ret += 4; else ret += to_string(x).size(); } cout << ret << endl; }