using System;
public class Program
{
public static void Main()
// Пример 3
int i;
for(i = 1; i <= 10; i = i+2){
Console.WriteLine("{0}", i);
}