๐ ํ๋ก๊ทธ๋๋จธ์ค
[ํ๋ก๊ทธ๋๋จธ์ค:Javascript] ๋ง์ ์ ์ถ๋ ฅํ๊ธฐ
Eun_zii
2024. 4. 15. 16:50
ํ๋ก๊ทธ๋๋จธ์ค Lv.0
- ๋ง์ ์ ์ถ๋ ฅํ๊ธฐ
๐ ๋ฌธ์ ์ค๋ช
๐ ์ ํ์กฐ๊ฑด
- 1 ≤ a, b ≤ 100
๐ ํ์ด
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = [];
rl.on('line', function (line) {
input = line.split(' ');
}).on('close', function () {
const a = Number(input[0])
const b = Number(input[1])
console.log(`${a} + ${b} = ${a+b}`);
});
โ
a ์ b๋ฅผ ๊ฐ ๊ฐ ๋ณ์์ ํ ๋นํด๋๊ณ ๋ฐฑํฑ( ` ` ) ๊ณผ ${ } ๋ฅผ ์ด์ฉํด ํํ์ ์ฝ์ ์ ์ฌ์ฉํ์๋ค.
๐ก ${ } ์ฌ์ด์ ๋ณ์๋ ์ฐ์ฐ ๋ฑ์ ์ฝ์ ํ ์ ์๋ค.
๊ทธ๋ฌ๋ฉด ์ ๋ ฅ๊ฐ์ด 4 ์ 5์ผ๋, 4 + 5 = 9 ๋ก ์ถ๋ ฅํ ์ ์๋ค.
728x90