Skip to content

Commit 774095b

Browse files
committed
[Bronze V] Title: A+B, Time: 0 ms, Memory: 1112 KB -BaekjoonHub
1 parent f90d3fd commit 774095b

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <stdio.h>
2+
int main() {
3+
int a,b;
4+
scanf("%d %d", &a, &b);
5+
printf("%d", a+b);
6+
return 0;
7+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Bronze V] A+B - 1000
2+
3+
[문제 링크](https://www.acmicpc.net/problem/1000)
4+
5+
### 성능 요약
6+
7+
메모리: 1112 KB, 시간: 0 ms
8+
9+
### 분류
10+
11+
구현, 사칙연산, 수학
12+
13+
### 제출 일자
14+
15+
2025년 9월 8일 22:31:54
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)