using System;
public class Program
{
public static void Main()
int s = 0;
for(int i = 2; i < 101; i= i + 2)
s = s + i;
}
Console.Write(s);