fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // int n;
  5. // printf("Enter the number: ");
  6. // scanf("%d",&n);
  7. for(int i=19;i<=200;i=i+19){
  8. printf("%d\n",i);
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5316KB
stdin
5
stdout
19
38
57
76
95
114
133
152
171
190