fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. for (int a = 4; a<=400; a = a+10){
  6. cout << a << endl;
  7. }
  8. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
4
14
24
34
44
54
64
74
84
94
104
114
124
134
144
154
164
174
184
194
204
214
224
234
244
254
264
274
284
294
304
314
324
334
344
354
364
374
384
394