public static void Main()
Console.WriteLine("Hello! If you want the odd numbers to be printed press 1, but if you want the even numbers to be printed, press 2.");
numero = int.Parse(Console.ReadLine());
for (int i = 1; i <= 100; i++)
else if (numero % 2 != 0)
for (int i = 1; i <= 100; i++)