백준#10950 A+B - 3

정은경·2022년 7월 5일
0

알고리즘

목록 보기
115/125

1. 문제

2. 나의 풀이

# 백준#10950 A+B - 3
# https://www.acmicpc.net/problem/10950

count = int(input())

for _ in range(count):
    
    A, B = [int(x) for x in input().split(" ")]
    print(A+B)

Reference

profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글