public static void Main()
Console.WriteLine("Give me the number and I will tell you if it's higher than ten or not.");
x = int.Parse(Console.ReadLine());
Console.WriteLine("The number is higher than 10.");
Console.WriteLine("The number is not higher than 10.");
Console.WriteLine("Thanks!");