파이썬 10952

백준 알고리즘 번호 : 10952 언어 : python 제목 : A+B - 5 https://www.acmicpc.net/problem/10952 Python3 코드 # 반복문 while 1: a, b = map(int, input().split()) if a != 0 and b != 0: print(a + b) else: break # 0 0이 아닐 경우 print, 아니면 멈춤
온당
'파이썬 10952' 태그의 글 목록