viewing paste Unknown #17327 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12
#‎include‬<stdio.h>
int main (void)
{
int x;
int y;
int sum;
printf("Enter any two integers and I will give you their sum:\n");
scanf("%d%d", &x, &y);
sum = x + y;
printf("The sum of the two integers is: %d\n", sum);
return 0;
}
Viewed 582 times, submitted by Guest.