using System;
// 1,100 arasındaki çift sayılar
for(int i=1;i<100;i++)
{
if(i%2==0)
Console.WriteLine(i);
}