fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int g = 2, h = 3;
  6.  
  7. if (g > 2){
  8. if(h > 3)
  9. h += g;
  10. else
  11. g += h;
  12. }else {
  13. if (h < 3)
  14. h -= g;
  15. else
  16. h *= g;
  17. }
  18. printf("%d", h);
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
6