/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
static void Main() {
//حلقة - تكرار العمليات عدد مرات
int total = 0;
for (int i = 0; i < 5; i++ )
{
//ارشاد للمستخدم ليدخل قيمة للمتغير
Console.Write("Please enter n:");
//نحول المعطى الذى ادخله المستخدم لعدد صحيح
int n = int.Parse(Console.ReadLine());
total = total + n;
}
Console.WriteLine("total: {0}", total);
}
}