using System; string s = Console.ReadLine(); int ans = 0; foreach (var item in s) { ans += int.Parse(item.ToString()); } Console.WriteLine(ans);