A = gets.split.map(&:to_i) ans = A.map { |a| if a % 5 == 0 && a % 3 == 0 8 elsif a % 5 == 0 4 elsif a % 3 == 0 4 else a.to_s.size end }.sum puts ans