using System;
public class Program
{
public static void Main()
Console.Write("Введіть a: ");
int a = int.Parse(Console.ReadLine());
Console.Write("Введіть b: ");
int b = int.Parse(Console.ReadLine());
Console.WriteLine(" ");
for (int i = a; i <= b; i++)
if (i % 5 == 0)
Console.Write("{0} ", i);
}