#include "stdio.h"
main()
{
int x=2,sum=0;
do
{
sum+=x;
x=x+2;
}
while(x<102);
{
}
printf("The sum of them is %d",sum);
}
#include "stdio.h"
main()
{
int x=2,sum=0;
do
{
sum+=x;
x=x+2;
}
while(x<102);
{
}
printf("The sum of them is %d",sum);
}