We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90d3fd commit 774095bCopy full SHA for 774095b
백준/Bronze/1000. A+B/A+B.c
@@ -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
+}
백준/Bronze/1000. A+B/README.md
@@ -0,0 +1,28 @@
+# [Bronze V] A+B - 1000
+
+[문제 링크](https://www.acmicpc.net/problem/1000)
+### 성능 요약
+메모리: 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