# [Algorithm/JS] ๋ฐฑ์ค 10950๋ฒ ํฉ
๐ ๋ฌธ์ ๋ฐ๋ก๊ฐ๊ธฐ (opens new window)
# Question
n์ด ์ฃผ์ด์ก์ ๋, 1๋ถํฐ n๊น์ง ํฉ์ ๊ตฌํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค.
# Input
์ฒซ์งธ ์ค์ n (1 โค n โค 10,000)์ด ์ฃผ์ด์ง๋ค.
# Output
1๋ถํฐ n๊น์ง ํฉ์ ์ถ๋ ฅํ๋ค.
# Example
# Input
3
1
# Output
6
1
# Solution
const input = require('fs').readFileSync('dev/stdin').toString();
let result = 0;
for (let i = 1; i <= Number(input); i++) result += i;
console.log(result);
1
2
3
4
2
3
4
โ 10950๋ฒ A+B - 3 15552๋ฒ ๋น ๋ฅธ A+B โ