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