using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int[] c = new int[s.Length]; int ans = 0; for(int i = 0; i < s.Length ; i++) { c[i] = int.Parse(s[i]); } for(int j = 0; j < s.Length ; j++) { if (c[j] % 3 == 0 && c[j] % 5 == 0) { ans += 8; } else if(c[j] % 3 == 0) { ans += 4; } else if(c[j] % 5 == 0) { ans += 4; }else { ans += s[j].Length; } } Console.WriteLine(ans); } } }