Skip to content

Instantly share code, notes, and snippets.

@kmarenov
Created November 1, 2019 21:30
Show Gist options
  • Select an option

  • Save kmarenov/fdee2d87dee44e4de99953c4c666f82c to your computer and use it in GitHub Desktop.

Select an option

Save kmarenov/fdee2d87dee44e4de99953c4c666f82c to your computer and use it in GitHub Desktop.
var stdin = process.openStdin();
stdin.addListener("data", function(d) {
var a = d.toString().split(" ");
console.log(parseInt(a[0]) + parseInt(a[1]));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment