using System;
public class Program
{
public static void Main()
//print the ODD number in the range of 50 to 100 using for loop
for (int i=50; i<=100; i++)
if ( i%2==1)
Console.WriteLine(i);
}