fork download
  1. let a = 'hello';
  2. let val = BigInt(1000000000000000000);
  3. for (x = BigInt(1); x <= 4000002; x++) {
  4. val += x;
  5. }
  6. process.stdout.write(a + '\n' + (val));
  7.  
Success #stdin #stdout 0.56s 33824KB
stdin
Standard input is empty
stdout
hello
1000008000010000003