#include int counting(int num); int main(){ int i; int a[5]; int total=0,new; for(i=0;i<5;i++){ if(scanf("%d",&a[i])); } for(i=0;i<5;i++){ if(a[i]%5==0 &&a[i]%3==0){ total+=8; }else if(a[i]%3==0 || a[i]%5==0){ total+=4; }else{ new=counting(a[i]); total+=new; } } printf("%d",total); return 0; } int counting(int num){ int i; for(i=1;num<0;i++){ num=num/10; } return i; }