using System;
public class Program
{
public static void Main()
//Christopher Martinez Sanchez
int NUM;
Console.WriteLine("Do you want to see odd or even numbers?");
NUM = int.Parse(Console.ReadLine());
if ( NUM % 2 == 0)
for (int i = 1; i <= 100; i++)
NUM++;
Console.WriteLine(NUM);
}