https://www.acmicpc.net/problem/10952
1 2 3 4 5 6 7 8 | import sys while True: a, b = map(int, sys.stdin.readline().split(' ')) if a == 0 and b == 0: break print(a+b) | cs |
1 2 3 4 5 6 7 8 9 10 11 | const filePath = process.platform === 'linux' ? '/dev/stdin' : './예제.txt'; let input = require('fs').readFileSync(filePath).toString().trim().split('\n'); let answer = '' for (let i = 0; i < input.length; i++) { let arr = input[i].split(' ').map(Number); if(arr[1]==0 && arr[0]==0){ break; } answer += `${arr[0]+arr[1]}\n`; } console.log(answer) | cs |
'알고리즘 공부 > 입출력' 카테고리의 다른 글
백준 10953번 (0) | 2021.09.28 |
---|---|
백준 10951번 (0) | 2021.09.28 |
백준 10950번 (0) | 2021.09.28 |
백준 2558번 (0) | 2021.09.28 |
백준 1000번 (0) | 2021.09.27 |