#include
int main()
{
int i=1,sum=0;
while(i<=100)
if(i%2==0)
sum+=i;
}
i++;
printf("%d\n",sum);
return 0;