public static void Main()
Console.WriteLine("Give me a positive number and I will tell you if it is smaller or larger than 10");
x = int.Parse(Console.ReadLine());
Console.WriteLine("This is a negative number");
Console.WriteLine("This number is larger than 10");
Console.WriteLine("This number is smaller than 10");