/******************************************************************************
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 count = 0;
//مجموع الاعداد الموجبة
int total = 0;
//1
//ارشاد للمستخدم ليدخل قيمة للمتغير
Console.Write("Please enter n:");
//ارشاد للمستخدم ليدخل قيمة للمتغير
int n = int.Parse(Console.ReadLine());
//ما زال طالما
while( n > 0)
{
//2
count++;
//نضيف العدد الموجب الجديد الى المتغير الذي يحسب مجموع الاعداد
total += n;
//3
//ارشاد للمستخدم ليدخل قيمة للمتغير
Console.Write("Please enter n:");
//ارشاد للمستخدم ليدخل قيمة للمتغير
n = int.Parse(Console.ReadLine());
}
Console.WriteLine("count: {0}", count);
Console.WriteLine("total: {0}", total);
}
}