728x90
반응형
문제
정답 풀이
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int A = Integer.parseInt(br.readLine());
int B = Integer.parseInt(br.readLine());
System.out.print(A*B);
br.close();
}
}
- 메모리 14116KB
- 시간 120ms
728x90
반응형
'Computer Science (CS) > 알고리즘' 카테고리의 다른 글
[백준/Java] 3009번 네 번째 점 (0) | 2023.05.25 |
---|---|
[백준/Java] 직사각형에서 탈출 (0) | 2023.05.22 |
[백준/Java] 11653번 소인수분해 (0) | 2023.05.21 |
[백준/Java] 2581번 소수 (0) | 2023.05.21 |
[백준/Java] 1978번 소수 찾기 (0) | 2023.05.21 |