public static void Main()
Console.WriteLine("If you want the even numbers press 1, if you want the odd numbers press 2");
num = int.Parse(Console.ReadLine());
for (int m = 1; m <= 100; m = m + 2)
Console.WriteLine(m + num);
for (int i = 1; i <= 100; i = i + 2)