https://www.acmicpc.net/problem/10951
풀이
while True:
try:
a, b = map(int, input().split())
print(a+b)
except:
break
'Python > Baekjoon' 카테고리의 다른 글
백준 10818번 : 최소, 최대 (0) | 2022.10.06 |
---|---|
백준 1110번 : 더하기 사이클 (0) | 2022.10.06 |
백준 10952번 : A+B - 5 (0) | 2022.10.06 |
백준 10871번 : X보다 작은 수 (0) | 2022.10.06 |
백준 2439번 : 별 찍기 - 2 (0) | 2022.10.06 |