fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int a = 5;
  6. int b = 1;
  7. int erg;
  8.  
  9. erg = a + b;
  10. printf("%d", erg);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
6