Notice
Recent Posts
Recent Comments
Link
Everything has an expiration date
BAEKJOON - 10998 : A × B 본문
import java.util.Scanner;
public class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a * b);
}
}
🤘🤘🤘
'BAEKJOON - challenge > 입출력과 사칙연산' 카테고리의 다른 글
BAEKJOON - 10869 : 사칙연산 (0) | 2023.09.17 |
---|---|
BAEKJOON - 1008 : A / B (0) | 2023.09.17 |
BAEKJOON - 1001 : A - B (0) | 2023.09.16 |
BAEKJOON - 1000 : A + B (0) | 2023.09.16 |
BAEKJOON - 2557 : Hello World (0) | 2023.09.16 |