using System; class No656{ static void Main(string[] args){ string str=Console.ReadLine(); short add=0; foreach(char c in str){ var score=(short)c; if(score!=0) add+=score; else add+=10; } Console.WriteLine(add); } }