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);
}
}
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준_JAVA] 2562 최댓값 (0) | 2023.08.02 |
---|---|
[백준_JAVA] 10818 최소, 최대 (0) | 2023.07.30 |
[백준_JAVA] 10871 X보다 작은 수 (0) | 2023.07.30 |
[백준_JAVA] 10807 개수 세기 (0) | 2023.07.30 |
[백준_JAVA] 2444 별 찍기 - 7 (0) | 2023.07.28 |