#include 
int main(){

int a, b, s;
printf("Enter a number: ");
scanf("%d%d", &a, &b);

s = a + b;

printf("Sum is %d", s);
 return 0;
}

Comments