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