/******************************************************************************
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() {
//1
//ارشاد للمستخدم ليدخل قيمة للمتغير
Console.Write("Please enter n:");
//ارشاد للمستخدم ليدخل قيمة للمتغير
int n = int.Parse(Console.ReadLine());
//2 نفحص اذا كان العدد موجب
if (n > 0)
// اذا يتحقق الشرط
{
Console.WriteLine("P");
Console.WriteLine("{0} is P", n);
}
//خلاف ذلك - اذا لم يتحقق الشرط
else
{
Console.WriteLine("N");
Console.WriteLine("{0} is N", n);
}
Console.WriteLine("Helllllllo");
}
}