using System;
class Program
{
static void Main(string[] args)
for (int i = 100; i >= 0; i -= 5)
Console.WriteLine(i);
}