using System;
public class Program
{
public static void Main()
int x= 10;
for (int i = 1; i < x; i++)
if (i%2 == 1)
Console.WriteLine(i);
}