Answer:
int i,j,k;
do{
scanf("%d %d",&i,&j);
k=i+j;
printf("%d",k);
scanf("%d",&k);
}while(k==1);
Step-by-step explanation:
First we initialize the 3 integers variables i,j,k
The loop starts
and we take input of numbers to be added into i and j
k stores the sum and prints it
Then we take an input of 0 (or) 1
0 indicates the user does not wish to perform the operation again
1 indicates the user wishes to perform the operation again