728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
if(a<10 && b<10) {
int result = a*b;
System.out.println(result);
}
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 10869번 JAVA(자바) 문제 풀이 (0) | 2022.04.17 |
---|---|
백준 1008번 JAVA(자바) 문제 풀이 (0) | 2022.04.16 |
백준 1001번 JAVA(자바) 문제 풀이 (0) | 2022.04.14 |
백준 1000번 JAVA(자바) 문제 풀이 (0) | 2022.04.13 |
백준 10172번 JAVA(자바) 문제 풀이 (0) | 2022.04.12 |