fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x;
  6. int y;
  7. int result;
  8. printf("Enter first number and second number: ");
  9. scanf("%d %d", &x, &y);
  10. result = x + y;
  11. printf("%d", result);
  12. return 0;
  13. }
  14.  
  15.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Enter first number and second number: 4198720