public static void Main()
Console.WriteLine("Hello, please give me a number. If it is even I'll show you the next 10 consecutive numbers. If the number is odd the next 5.");
n = int.Parse(Console.ReadLine());
for ( int i = n; i <= n+10; i++)
for ( int i = n; i <= n+5; i++)