#include<stdio.h>
int main()
{
int a,b,c;
printf("enter two numbers");
scanf("%d%d",&a,&b);
c=a+b;
printf("sum of %d",c);
return 0;
}
0 Comments