fork 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 if (h < 3)
  13. h -= g;
  14. else
  15. h *= g;
  16. printf("%d", h);
  17.  
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
6