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