Skip to content

Commit 0330702

Browse files
committed
[Bronze V] Title: A×B, Time: 180 ms, Memory: 17704 KB -BaekjoonHub
1 parent 86470bc commit 0330702

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import java.util.*;
2+
3+
public class Main {
4+
public static void main(String[] args) {
5+
Scanner sc = new Scanner(System.in);
6+
int n1 = sc.nextInt();
7+
int n2 = sc.nextInt();
8+
int n3 = n1 * n2;
9+
System.out.println(n3);
10+
}
11+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Bronze V] A×B - 10998
2+
3+
[문제 링크](https://www.acmicpc.net/problem/10998)
4+
5+
### 성능 요약
6+
7+
메모리: 17704 KB, 시간: 180 ms
8+
9+
### 분류
10+
11+
구현, 사칙연산, 수학
12+
13+
### 제출 일자
14+
15+
2025년 10월 3일 18:11:06
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)