#include <stdio.h>main() {
int sum=0;int i=0; for(i=0;i<=10;i++)
{    if(i%2!=0)      continue;        sum+=i;  }  printf("%d",i+sum);}