백준 10950번 A+B - 3 파이썬 https://www.acmicpc.net/problem/10950 10950번: A+B - 3 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net for i in range(int(input())): x, y = map(int, input().split()) print(x+y) BOJ/Python 2021.08.17