⌨️ Algorithms/백준 [Python] 백준 10951번_A+B - 4 2022. 6. 30. 21:26 - https://www.acmicpc.net/problem/10951 10951번: A+B - 4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net import sys while True: try: A, B = map(int, sys.stdin.readline().split()) except: break print(A+B) 공유하기 게시글 관리 MONZHELD '⌨️ Algorithms > 백준' 카테고리의 다른 글 [Python] 백준 10818번_최소, 최대 (0) 2022.07.06 [Python] 백준 1110번_더하기 사이클 (0) 2022.07.05 [Python] 백준 10952번_A+B - 5 (0) 2022.06.30 [Python] 백준 10871번_X보다 작은 수 (0) 2022.06.30 [Python] 백준 2439번_별찍기 - 2 (0) 2022.06.30 Contents 당신이 좋아할만한 콘텐츠 [Python] 백준 10818번_최소, 최대 2022.07.06 [Python] 백준 1110번_더하기 사이클 2022.07.05 [Python] 백준 10952번_A+B - 5 2022.06.30 [Python] 백준 10871번_X보다 작은 수 2022.06.30 댓글 0 + 이전 댓글 더보기