fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int y = 0,z = 0;
  5. for(int x=0; x<=3;x++){
  6. while(y<4){
  7. if(y>3){
  8. z++;
  9. }
  10. else z--;
  11. y++;
  12. }
  13. y = 0;
  14. }
  15. printf("%d",z);
  16. }
Success #stdin #stdout 0s 5304KB
stdin
70
stdout
-16