using System;
public class Program
{
public static void Main()
Console.WriteLine("ЧИСЛАТА ОТ n ДО 1 СЪС СТЪПКА 5");
Console.WriteLine("Въведи стойност за n:");
int n = int.Parse(Console.ReadLine());
for (int i = n; i>=1; i-=5)
Console.WriteLine(i);
}