[백준] #10952 A + B - 5 python

2023. 3. 10. 06:00

 

https://www.acmicpc.net/problem/10952

 

10952번: A+B - 5

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

📕 설명 📕

아래와 같이 while 문을 사용하여 풀이하였다.

 

🧑🏻‍💻 나의 풀이 🧑🏻‍💻

while 1:
    a,b = map(int,input().split())
    if a == 0 and b == 0:
        break
    print(a+b)

 

BELATED ARTICLES

more