using System;
public class Program
{
public static void Main()
Console.WriteLine("How many numbers would you like to know are odd or even?");
int i = int.Parse(Console.ReadLine());
int n = 1;
while (n <= i)
if (n % 2 == 0)
Console.WriteLine(n + " is an even number");
else
Console.WriteLine(n + " is an odd number");
n++;
}