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