fork(1) download
  1. // your code goes here
  2. let y=1;
  3. let x=15;
  4. while(x<50)
  5. {y+=x; x++};
  6. console.log(y)
Success #stdin #stdout 0.03s 18600KB
stdin
Standard input is empty
stdout
1121