fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. for(a=1;a<1000;a++){
  6. if(a%17==3)
  7. printf("%d\n",a);
  8. }
  9. // your code goes here
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5408KB
stdin
Standard input is empty
stdout
3
20
37
54
71
88
105
122
139
156
173
190
207
224
241
258
275
292
309
326
343
360
377
394
411
428
445
462
479
496
513
530
547
564
581
598
615
632
649
666
683
700
717
734
751
768
785
802
819
836
853
870
887
904
921
938
955
972
989