fork download
  1. //add two number
  2. #include<stdio.h>
  3.  
  4. void main()
  5. {
  6. int a,b,c;
  7.  
  8. printf("enter two numbers\n");
  9. scanf("%d%d",&a,&b);
  10. c=a+b;
  11. printf("The addition is =%d",c);
  12. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
enter two numbers
The addition is =1814599486