public static void Main()
Console.WriteLine("Enter a number");
int n=Int32.Parse(Console.ReadLine());
Console.WriteLine(n+ "is a positive number");
Console.WriteLine(n+" is divisible by 5");
Console.WriteLine(n+ "is not divisible by 5");
Console.WriteLine(n+ "is a negative number");