using System; namespace yukicoder { class Program { static void Main(string[] args) { //文字列入力 string S = Console.ReadLine(); string[] s = new string[S.Length]; int[] n = new int[S.Length]; string[] m = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }; int ans = 0; for (int i = 0; i < S.Length; i++) { string str = S.Substring(i, 1); s[i] = str; } for (int j = 0; j < m.Length; j++) { for (int i = 0; i < S.Length; i++) { if (s[i] == m[j]) { int a = int.Parse(s[i]); n[i] = a; ans = ans + n[i]; } } } Console.WriteLine(ans); } } }