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