using System;
public class Program
{
public static void Main()
//Jesus
int t ;
Console.WriteLine("If you want the even numbers press 1, if you want the odd numbers press 2.");
t=int.Parse(Console.ReadLine());
if (t==1)
for (int i = 2; i <= 100; i++)
Console.WriteLine(i++);
}
else if (t==2)
for (int i = 3; i <= 100; i++)