int a, b, i, nrp;
int main()
{
cin >> a >> b;
for(i = a; i <= b; i ++)
if(i % 2 == 0)
nrp ++;
}
cout << nrp;
return 0;
Explicație: