using System;
public class Program
{
public static void Main()
int start = 5;
int end = 20;
for (int i = start; i<=end;i++)
Console.WriteLine(i);
}