public static void Main()
Console.WriteLine("Hello!! Please write a number and If it is even, I`ll show you the next 10 consecutive numbers. If the number is odd, I will show the next 5");
x = int.Parse(Console.ReadLine());
for (int i = 1; i <= 10; i++)
Console.WriteLine(x + i);
for (int i = 1; i <= 5; i++)
Console.WriteLine(x + i);
Console.WriteLine("Try again please");