백준 10952번 A+B - 5 파이썬 https://www.acmicpc.net/problem/10952 10952번: A+B - 5 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net while True: x, y = map(int, input().split()) if (x or y) == 0: break else: print(x+y) BOJ/Python 2021.08.18