fork(1) download
  1. // your code goes here
  2. let y="";
  3. for(let x=15; x>0; x--)
  4. {y+=x - x%2+"\n" };
  5. console.log(y)
Success #stdin #stdout 0.02s 16644KB
stdin
Standard input is empty
stdout
14
14
12
12
10
10
8
8
6
6
4
4
2
2
0