using System;
public class Progrm
{
public static void Main()
int num =1;
int v1 = 0;
int total = 0;
while(num <= 10)
Console.WriteLine("Digite o valor");
v1 = int.Parse(Console.ReadLine());
total = v1 + total;
num = num + 1;
}
Console.WriteLine("A soma dos 10 valores é:" + total );