public static void Main(string [] args)
Console.Write("Enter the amount of number you want to sum:");
int n = int.Parse(Console.ReadLine());
for( int t =1; t<=n; t++){
Console.Write("Enter a number:");
int number = int.Parse(Console.ReadLine());
Console.WriteLine("The sum of the digits of all the number is " + s);