using System;
namespace MyApplication
{
class Program
static void Main(string[] args)
for (int i = 0; i <= 10; i = i + 2)
Console.WriteLine(i);
}