fork download
  1.  
  2. #include <stdio.h>
  3. int main() {
  4. int i;
  5. for ( i=2; i<=1000 ; i=3*i-2 )
  6. if(i>=100)
  7. printf("%d " ,i);
  8.  
  9.  
  10.  
  11.  
  12. return 0;
  13.  
  14. }
  15.  
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
244 730