#include<stdio.h>
int main()
{
int i=1,sum=0;
do{
sum=sum+i;
}while(i<=5);
Printf(“%d”,sum);
Return 0;
}


Posted on by