[BaekJoon] A+B - 4
2024. 10. 6. 13:31
문제
https://www.acmicpc.net/problem/10951
while let input = readLine()?.split(separator: " ").map({ Int($0)! }) {
let a = input[0], b = input[1]
print(a + b)
}
출처
728x90
'Test > Coding Tests' 카테고리의 다른 글
[Backjoon] 10810 공 넣기 (0) | 2024.11.10 |
---|---|
[BaekJoon] 아스키 코드 - 11654번 (2) | 2024.10.13 |
[BaekJoon] A+B - 5 (0) | 2024.10.06 |
[Programmers] 수 조작하기 1 (0) | 2024.09.17 |
[Programmers] 원소들의 곱과 합 (0) | 2024.08.11 |