fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. int x,y,sum;
  5. printf("Enter the value x and y");
  6. scanf("%d%d",&x,&y);
  7. sum=x+y;
  8. printf("The result of sum");
  9. }
Success #stdin #stdout 0s 5276KB
stdin
 
stdout
Enter the value x and yThe result of sum