Skip to content

Commit 41a0f7b

Browse files
committed
[Bronze V] Title: A+B - 2, Time: 88 ms, Memory: 108384 KB -BaekjoonHub
1 parent cb9ebc0 commit 41a0f7b

2 files changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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)
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Bronze V] A+B - 2 - 2558
2+
3+
[문제 링크](https://www.acmicpc.net/problem/2558)
4+
5+
### 성능 요약
6+
7+
메모리: 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

Comments
 (0)