using System;
public class Program
{
public static void Main()
byte x = 0;
while (x <= 20) {
Console.WriteLine(x);
x+=2;
}