using System;
public class Program
{
public static void Main()
int i = 100;
while(i >= 0){
if(i % 5 == 0){
Console.WriteLine(i);
}
i--;