using System;
public class Program
{
public static void Main()
for (var i = 0; i<=1000; i++ )
if (i % 7 == 0)
Console.WriteLine("{0} ", i);
}