#include<stdio.h>
int main()
{
int i=1, sum=0;
do{
sum=sum+i;
}
while(i<=10);
printf("%d", sum);
return 0;
}


Posted on by