using System;
public static class IfElse
{
public static void Main()
Random r = new Random();
int n = r.Next(-5, 5);
Console.WriteLine(n);
if (n > 0)
Console.WriteLine("The number is positive");
} else
Console.WriteLine("The number is negative");
}