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