https://www.acmicpc.net/problem/2558
1
2
3
4
|
a = int(input())
b = int(input())
print(a+b)
|
cs |
1 2 3 4 5 | var fs = require('fs'); var input = require('fs').readFileSync('예제.txt').toString().split('\n'); var a = parseInt(input[0]) var b = parseInt(input[1]) console.log(a+b) | cs |
'알고리즘 공부 > 입출력' 카테고리의 다른 글
백준 10952번 (0) | 2021.09.28 |
---|---|
백준 10951번 (0) | 2021.09.28 |
백준 10950번 (0) | 2021.09.28 |
백준 1000번 (0) | 2021.09.27 |
백준 2557 with jsp (0) | 2021.09.27 |