public static void Main()
Console.Write("Hello! What`s your first name? ");
name = Console.ReadLine();
Console.WriteLine("OMG!!! You stole my name, just kidding. Congrats for having the best name in entire world.");
Console.WriteLine("OMG!!! You stole my name, just kidding. Congrats for having the best name in entire world.");
Console.WriteLine("OMG!!! You stole my name, just kidding. Congrats for having the best name in entire world.");
Console.WriteLine("Welcome!");
Console.Write("Ok, so now give me a number from 1-20 and I will tell you if it is ODD or EVEN.");
number = int.Parse(Console.ReadLine());
Console.WriteLine("The given number is ODD.");
Console.WriteLine("The given number is EVEN.");
Console.WriteLine("Your number is invalid, please try again.");