using System;
public class Program
{
public static void Main()
Console.Write("Unesite broj: ");
int n = Convert.ToInt32(Console.ReadLine());
int[] a = new int [n];
for (int i = 0; i < n; i++)
if ( i % 2 != 0)
{Console.WriteLine( 1 + i++);
}