using System; class P { static void Main() { int s = 0; foreach (var c in Console.ReadLine()) { s += char.IsDigit(c) ? c - '0' : 0; } Console.WriteLine(s); } }