공존’s BLOG
/
Database
/
Resources
/
백준_Python
/
67 백준_Python [10952] A+B -5
Search
Share
67 백준_Python [10952] A+B -5
10952번: A+B - 5
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
while
(
True
)
:
a
,
b
=
map
(
int
,
input
(
)
.
split
(
)
)
if
a
==
0
and
b
==
0
:
break
print
(
a
+
b
)
Python
복사