#include <stdio.h>
int main()
{
int a,b,c;
printf("Enter Two Number \n");
scanf("%d %d", &a, &b);
c=a+b;
printf("The Sum Of a+b is %d",c);
return(0);
}
OUTPUT
Enter Two Number
1
2
The Sum Of a+b is 3
0 Comments