using System;
public class Program
{
public static void Main()
string choice = "bruh";
while (choice != "q")
int i = 1;
while (i <= 100)
if (i % 2 == 0)
Console.WriteLine(i + " is an even number");
else
Console.WriteLine(i + " is an odd number");
i++;
}
Console.WriteLine("Press q to quit or any other key to continue.");
choice = Console.ReadLine();