#include <stdio.h>
int main() 
{
    int  i,j,sum=0;
    scanf("%d",&i);
    printf("Enter the first integer:%d\n",i);
    scanf("%d",&j);
    printf("Enter the second intger:%d\n",j);
    do {
        sum=i+j;
    }
    while (0);
    printf("The sum of the integer=%d\n",sum);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: