public static void Main()
Console.WriteLine("Hello :D! Please type a number from 1-20 and the program will show you the next 5 if it is even. It will shoy the next 10 if it is odd.");
num = int.Parse(Console.ReadLine());
if ( num < 1 || num > 20)
Console.WriteLine("The number is out of range, please try again");