#include <stdio.h>

int main() 
{
int x,y,i,p;
printf("vuvedete x taka che toi da e po maluk ot y\n" ,x);
scanf("%d",&x);
printf("vuvedete y taka che toi da e po golqm ot x\n" ,y);
scanf("%d",&y);
i=x;
p=0;

	while (i<=y) 
	{
		if (i%2 ==0)
		i=i++;
			else 
			{
			p=p+i;
			i=i+2;
			}
	}	
printf ("sbor=%d\n",p);

return 0;
}
