fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int num1,num2,sum;
  5. printf("Enter the first number:");
  6.  
  7. scanf("%d" , &num1);
  8.  
  9. printf("Enter the second number:");
  10. scanf("%d", &num2);
  11. sum=num1+num2;
  12.  
  13. printf("Sum of %d and %d is %d\n", num1,num2,sum);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Enter the first number:Enter the second number:Sum of 464483344 and 32764 is 464516108