From 5da5cefd73b3a0683b1b31393f32997f28c3bb06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=98=9C=EB=B9=88?= Date: Thu, 2 Oct 2025 00:49:40 +0900 Subject: [PATCH] =?UTF-8?q?10952=EB=B2=88=20=EB=AC=B8=EC=A0=9C=20=ED=92=80?= =?UTF-8?q?=EC=9D=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HyebinBae/week01/week02/10952_A+B-5.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 HyebinBae/week01/week02/10952_A+B-5.py diff --git a/HyebinBae/week01/week02/10952_A+B-5.py b/HyebinBae/week01/week02/10952_A+B-5.py new file mode 100644 index 0000000..9bae440 --- /dev/null +++ b/HyebinBae/week01/week02/10952_A+B-5.py @@ -0,0 +1,7 @@ +while True: + line = input() + A, B = map(int, line.split()) + + if A == 0 and B == 0: + break + print(A + B) \ No newline at end of file