10951번1 [Python] 백준 10951번 - A+B - 4 https://www.acmicpc.net/problem/10951 10951번: A+B - 4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net a, b = map(int, input().split()) while (a, b): try: print(a+b) a, b = map(int, input().split()) except EOFError: break 2020. 6. 9. 이전 1 다음