using System;
public class Program
{
public static void Main()
//Giorgio Robles
for (int x = 1; x <= 200;x++)
if (x % 2 ==0 )
Console.WriteLine(x);
}