fork download
  1. #include <stdio.h>
  2. int main() {
  3. int num1;
  4. int num2;
  5.  
  6. printf(" Enter the First number");
  7. scanf("%d", &num1);
  8. printf(" Enter the Second number");
  9. scanf("%d", &num2);
  10. printf("Answear: %d", num1 + num2);
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5288KB
stdin
 
stdout
 Enter the First number Enter the Second numberAnswear: 1553755628