간단한 문제이니 설명은 생략한다.
import java.util.Scanner;
public class Step1_4 {
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);
}
}
'알고리즘 분류 > Step1 입출력과 사칙연산' 카테고리의 다른 글
</Step1_6> 10869 사칙연산 JAVA (0) | 2023.03.11 |
---|---|
</Step1_5> 1008 A / B JAVA (0) | 2023.03.11 |
</Step1_3> 1001 A - B JAVA (0) | 2023.03.11 |
</Step1_2> 1000 A + B JAVA (0) | 2023.03.11 |
</Step1_1> 2557 Hello World JAVA (0) | 2023.03.11 |