Advertisement
GAMELASTER

Untitled

Oct 11th, 2018
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const getStdin = require('get-stdin');
  2.  
  3. getStdin().then(input => {
  4.     let lines = input.split('\n');
  5.     console.log(parseInt(lines[0]) + parseInt(lines[1]));
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement