fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. for (int i=2;i<50;i++)
  5. {
  6. int check=1;
  7. for(int j=2 ;j*j<=1;j++)
  8. if(!(1%j))
  9. check=0;
  10. if(check)
  11. printf("%d ",i);
  12. }
  13. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49