using System;
public class Program
{
public static void Main()
int i;
for(i=1007; i<=2020; i=i+10)
Console.WriteLine(i);
}