/******************************************************************************
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 نفحص اذا كان العدد موجب
n = 100;
if (n <= 9)
Console.WriteLine("1");
Console.WriteLine("Warning");
}
}