using System.Collections.Generic;
using System.Threading.Tasks;
namespace ConsoleApplication1
public static void Main(string[] args)
Console.WriteLine("Check wether a number is positive or negative");
Console.WriteLine("---------------------------------------------");
Console.WriteLine("Input an Number: ");
num = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("{0} is a positive number.", num);
Console.WriteLine("{0} is a negative number.", num);
Console.WriteLine("{0} is a negative or positive.", num);