반응형
package bj10998;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
System.out.println(A * B);
}
}
반응형
'Projects > 백준 문제' 카테고리의 다른 글
백준 8393번 자바 문제 등차수열의 합 (0) | 2022.01.31 |
---|---|
백준 10950번 자바 문제 for문 (0) | 2022.01.31 |
백준 18108번 자바 문제 불기 (0) | 2022.01.31 |
백준 2588번 자바 문제 곱셈 (0) | 2022.01.31 |
백준 2739번 자바 문제 구구단 출력 (0) | 2022.01.31 |