class Program
{
static void Main(String[] args)
for (int i = 0; i < 100; i++)
if (i%7==0)
Console.WriteLine(i);
}
Console.ReadLine();