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