using System;
public class Program
{
public static void Main()
int i=0;
int x, total=0;
while(i<5){
Console.Write("รับค่า รั้งที่ {0} : " ,i);
x = int.Parse(Console.ReadLine());
total = total + x;// total += x;
i++;
}
Console.WriteLine("Result = {0}",total);