➽ Program:-
#include<stdio.h>
int main()
{
int num1, num2,
sum;
printf("Enter
two integers: ");
scanf("%d
%d", &num1, &num2);
sum = num1 + num2;
printf("The sum
of %d + %d is %d", num1, num2, sum);
return 0;
}
➽ Output:-
Enter two integers: 26
27
The sum of 26 + 27 is 53
0 Comments
Please do not enter any spam link in the comment section.