fork download
  1. #include<stdio.h>
  2.  
  3. int main(){
  4. int a, b;
  5.  
  6. printf("Enter two numbers : ");
  7. scanf("%d %d", &a, &b);
  8.  
  9. printf("The sum of %d and %d is : %d", a, b, a+b);
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Enter two numbers : The sum of 1256565056 and 32764 is : 1256597820