public static void Main()
Console.WriteLine("Write a number, please. If it is even i am gonna show you the next 10 consecutive numbers. If the number is odd i am gonna show you the next 5.");
num = int.Parse(Console.ReadLine());
for (int i = 1; i <= 10; i++)
for (int i = 1; i <= 5; i++)