We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb9ebc0 commit 41a0f7bCopy full SHA for 41a0f7b
2 files changed
백준/Bronze/2558. A+B - 2/A+B - 2.py
@@ -0,0 +1,7 @@
1
+import sys
2
+input = sys.stdin.readline
3
+
4
+a = int(input())
5
+b = int(input())
6
7
+print(a + b)
백준/Bronze/2558. A+B - 2/README.md
@@ -0,0 +1,28 @@
+# [Bronze V] A+B - 2 - 2558
+[문제 링크](https://www.acmicpc.net/problem/2558)
+### 성능 요약
+메모리: 108384 KB, 시간: 88 ms
8
9
+### 분류
10
11
+구현, 사칙연산, 수학
12
13
+### 제출 일자
14
15
+2026년 3월 19일 19:59:43
16
17
+### 문제 설명
18
19
+<p>두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.</p>
20
21
+### 입력
22
23
+ <p>첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10)</p>
24
25
+### 출력
26
27
+ <p>첫째 줄에 A+B를 출력한다.</p>
28
0 commit comments