#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%17 ==0) 
		{
		p=p+i;
		i=i+17;
		}
			else 
			i=i++;
	
	}
printf ("sbor=%d\n",p);

return 0;
}
