public static void Main()
Console.WriteLine("Hi! I hope you are having a good day :D");
Console.WriteLine("Please, write a number from 1-10 and I will tell you if the number is odd or even.");
num = int.Parse(Console.ReadLine());
Console.WriteLine("The number "+num+ "is even.");
Console.WriteLine("The number "+num+ "is odd.");
Console.WriteLine("Please start again, This number is out of range");