fb=lambda n:8 if n%15==0 else 4 if (n%3)*(n%5)==0 else len(str(n)) a=list(map(int,input().split())) print(sum([fb(i) for i in a]))