public static void Main()
Console.WriteLine("write a number from 1-100 and i´ll tell you if the number is odd, even or out of range");
n = int.Parse(Console.ReadLine());
Console.WriteLine("the number is odd");
Console.WriteLine("the number is even");
Console.WriteLine("this number is out of range. Please try again");