public static void Main()
Console.WriteLine("Hi, what's your name?");
name = Console.ReadLine();
Console.WriteLine("Hey! That's my name too!");
Console.WriteLine("Welcome!");
Console.WriteLine("Now, please write a number from 1-20 and I will tell you if it is even or odd");
num = int.Parse(Console.ReadLine());
Console.WriteLine("Thats number is odd");
Console.WriteLine("Thats number is even");
Console.WriteLine("Your number is out of the range");