fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. int a, b ,c;
  7.  
  8. scanf("%d %d", &a , &b);
  9. c=a+b;
  10. printf("%d + %d=%d", a,b ,c);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2116KB
stdin
35 40
stdout
35 + 40=75