fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x=4,y=0,z;
  5. while(x>=0){
  6. x--;
  7. y++;
  8. if(x==y)
  9. continue;
  10. else
  11. printf("\n%d%d",x,y);
  12.  
  13. }
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
31
13
04
-15